/* =========================================================
   ROOT
   ========================================================= */

:root {
    --bg: #f3f7fb;
    --card: #ffffff;

    --text: #0f172a;
    --muted: #64748b;

    --border: #e2e8f0;

    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;

    --green: #10b981;
    --orange: #f97316;
    --red: #ef4444;

    --shadow:
        0 16px 40px
        rgba(15, 23, 42, 0.08);

    --shadow-small:
        0 10px 30px
        rgba(15, 23, 42, 0.055);

    --radius: 22px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.5;

    background:
        radial-gradient(
            circle at top left,
            rgba(37, 99, 235, 0.12),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0,
            var(--bg) 100%
        );

    min-height: 100vh;
}

body.mobile-menu-open {
    overflow: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--blue-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
    color: var(--text);
}

h1 {
    margin:
        0 0 12px;

    font-size: 40px;
    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -1px;
}

h2 {
    margin:
        0 0 18px;

    font-size: 25px;
    line-height: 1.25;

    font-weight: 900;

    letter-spacing: -0.4px;
}

h3 {
    margin:
        0 0 7px;

    font-size: 18px;

    font-weight: 900;
}

p {
    margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    width: min(1180px, calc(100% - 32px));

    margin: 16px auto 0;
    padding: 16px 20px 12px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow:
        0 14px 36px
        rgba(15, 23, 42, 0.07);

    backdrop-filter: blur(14px);

    position: sticky;
    top: 12px;
    z-index: 2000;
}


/* =========================================================
   TOP ROW
   ========================================================= */

.header-top {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: flex-end;
    gap: 14px;

    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.site-logo:hover {
    color: var(--text);
    text-decoration: none;
}

.site-logo-image {
    display: block;

    height: 58px;
    width: auto;

    object-fit: contain;

    flex: 0 0 auto;
}

.site-logo-text {
    display: flex;
    align-items: flex-end;

    height: 58px;
}

.site-logo-slogan {
    display: block;

    margin: 0 0 12px 0;

    font-size: 16px;
    line-height: 1;

    font-weight: 800;
}


/* =========================================================
   COUNTRY PICKER
   ========================================================= */

.country-picker {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: auto;
}

.country-picker-label {
    color: var(--muted);

    font-size: 13px;

    font-weight: 900;

    white-space: nowrap;
}

.country-select {
    height: 40px;

    min-width: 170px;

    padding: 0 38px 0 14px;

    color: var(--text);

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;

    outline: none;
}

.country-select:hover {
    border-color: #bfdbfe;
}

.country-select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px
        rgba(37, 99, 235, 0.10);
}


/* =========================================================
   NAVIGATION ROW
   ========================================================= */

.top-nav {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.nav-links > a {
    min-height: 36px;

    padding: 7px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: #334155;

    font-size: 14px;

    font-weight: 900;

    transition:
        background 0.18s,
        color 0.18s;
}

.nav-links > a:hover {
    color: var(--blue);

    background: var(--blue-light);
}


/* =========================================================
   MOBILE BUTTONS
   ========================================================= */

.mobile-menu-button,
.mobile-popup-head,
.mobile-menu-backdrop {
    display: none;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 760px) {

    .site-header {
        width: calc(100% - 24px);

        margin: 12px 12px 0;
        padding: 14px;

        position: sticky;
        top: 8px;

        border-radius: 22px;
    }


    .header-top {
        min-height: 48px;

        gap: 10px;
    }


	.site-logo {
		display: inline-flex;
		align-items: center;
		gap: 10px;

		color: var(--text);
		text-decoration: none;
	}

	.site-logo:hover {
		color: var(--text);
		text-decoration: none;
	}

	.site-logo-image {
		display: block;
		width: auto;
		height: 42px;
		max-width: 150px;
		object-fit: contain;
	}

	.site-logo-text {
		display: flex;
		align-items: baseline;
		gap: 8px;
	}

	.site-logo-name {
		font-size: 30px;
		line-height: 1;
		font-weight: 950;
		letter-spacing: -0.8px;
	}

	.site-logo-slogan {
		font-size: 15px;
		font-weight: 800;
		color: #0f172a;
	}
	
	@media (max-width: 760px) {

		.site-logo-image {
			max-height: 38px;
		}

		.site-logo-name {
			font-size: 22px;
		}

		.site-logo-slogan {
			display: none;
		}

	}


    .country-picker {
        display: none;
    }


    .mobile-menu-button {
        width: 42px;
        height: 38px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 4px;

        padding: 0;

        border: 1px solid var(--border);
        border-radius: 12px;

        background: #ffffff;

        cursor: pointer;
    }


    .mobile-menu-button span {
        width: 18px;
        height: 2px;

        display: block;

        border-radius: 999px;

        background: var(--text);
    }


    .top-nav {
        min-height: 0;
    }


    .mobile-popup-menu {
        position: fixed !important;

        top: 14px;
        right: 14px;
        left: 14px;

        width: auto;

        max-width: 420px;

        margin-left: auto;

        padding: 12px;

        display: block;

        background: #ffffff;

        border: 1px solid var(--border);
        border-radius: 22px;

        box-shadow:
            0 28px 70px
            rgba(15, 23, 42, 0.28);

        z-index: 10001;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-12px)
            scale(0.96);

        transition: 0.18s;
    }


    body.mobile-menu-open
    .mobile-popup-menu {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }


    .mobile-popup-head {
        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 12px;

        margin-bottom: 4px;

        padding: 4px 4px 10px;

        border-bottom: 1px solid var(--border);
    }


    .mobile-popup-head strong {
        color: var(--text);

        font-size: 16px;

        font-weight: 950;
    }


    .mobile-popup-close {
        width: 32px;
        height: 32px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;
        border-radius: 999px;

        background: #f8fafc;

        color: var(--text);

        font-size: 24px;

        cursor: pointer;
    }


    .mobile-popup-menu > a {
        width: 100%;

        min-height: 43px;

        padding: 10px 12px;

        display: flex;

        align-items: center;
        justify-content: flex-start;

        border-radius: 14px;

        color: var(--text);

        font-size: 14px;

        font-weight: 900;
    }


    .mobile-popup-menu > a:hover {
        color: var(--blue);

        background: var(--blue-light);
    }

}


/* =========================================================
   MOBILE BUTTONS - DESKTOP HIDDEN
   ========================================================= */

.mobile-menu-button,
.mobile-popup-head,
.mobile-menu-backdrop {
    display: none;
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding:
        34px 20px
        20px;
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

.breadcrumbs {
    margin:
        0 0 18px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    color: #94a3b8;

    font-size: 13px;

    font-weight: 700;
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs a:hover {
    color: var(--blue);
}


/* =========================================================
   COUNTRY HERO
   ========================================================= */

.country-header {
    position: relative;

    overflow: hidden;

    margin-bottom: 24px;

    padding: 38px 40px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(
                37,
                99,
                235,
                0.97
            ),
            rgba(
                14,
                165,
                233,
                0.90
            )
        ),
        #2563eb;

    border-radius: 30px;

    box-shadow:
        var(--shadow);
}

.country-header::after {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    right: -110px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );
}

.country-header h1,
.country-header p {
    position: relative;

    z-index: 1;
}

.country-header h1 {
    max-width: 760px;

    color: #ffffff;

    font-size: 42px;

    letter-spacing: -1.2px;
}

.country-header p {
    max-width: 700px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 16px;

    font-weight: 650;

    line-height: 1.6;
}


/* =========================================================
   CITY HEADERS
   ========================================================= */

.city-header,
.city-fuel-header {
    position: relative;

    overflow: hidden;

    margin-bottom: 22px;

    padding: 30px 34px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fbff
        );

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    box-shadow:
        var(--shadow-small);
}

.city-header::after,
.city-fuel-header::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -110px;

    border-radius: 50%;

    background:
        rgba(
            37,
            99,
            235,
            0.07
        );
}

.city-header h1,
.city-header p,
.city-fuel-header h1,
.city-fuel-header p {
    position: relative;

    z-index: 1;
}

.city-header h1,
.city-fuel-header h1 {
    font-size: 36px;
}

.city-header p,
.city-fuel-header p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;

    font-weight: 700;
}


/* =========================================================
   FUEL TABS
   ========================================================= */

.fuel-tabs {
    margin:
        18px 0 28px;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.fuel-tabs a {
    min-height: 40px;

    padding:
        9px 16px;

    display:
        inline-flex;

    align-items: center;
    justify-content: center;

    color: #334155;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 999px;

    font-size: 14px;

    font-weight: 900;

    box-shadow:
        0 6px 16px
        rgba(
            15,
            23,
            42,
            0.035
        );

    transition: 0.18s;
}

.fuel-tabs a:hover {
    color: var(--blue);

    background:
        var(--blue-light);

    border-color: #bfdbfe;
}

.fuel-tabs a.active {
    color: #ffffff;

    background: var(--blue);

    border-color: var(--blue);

    box-shadow:
        0 8px 20px
        rgba(
            37,
            99,
            235,
            0.18
        );
}


/* =========================================================
   COUNTRY SECTIONS
   ========================================================= */

.country-fuel-section {
    margin-top: 24px;
}

.country-fuel-section > h2 {
    margin:
        0 0 15px;
}


/* =========================================================
   COUNTRY PRICE CARDS
   ========================================================= */

.country-price-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.country-price-card {
    min-width: 0;
    padding: 12px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow:
        0 6px 18px
        rgba(15, 23, 42, 0.045);

    overflow: hidden;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.country-price-card:hover {
    transform: translateY(-1px);

    border-color: #bfdbfe;

    box-shadow:
        0 8px 22px
        rgba(15, 23, 42, 0.07);
}


/* =========================================================
   Station name
   ========================================================= */

.country-price-card .station-name {
    margin: 0 0 3px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-price-card .station-name a {
    display: block;

    color: var(--text);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-price-card .station-name a:hover {
    color: var(--blue);
}


/* =========================================================
   City
   ========================================================= */

.country-price-card .station-city {
    margin: 0 0 7px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-price-card .station-city a {
    color: var(--muted);
}

.country-price-card .station-city a:hover {
    color: var(--blue);
}


/* =========================================================
   Price
   ========================================================= */

.country-price-card .fuel-price-value {
    margin: 5px 0 0;

    color: var(--text);

    font-size: 21px;
    line-height: 1.05;

    font-weight: 950;

    letter-spacing: -0.6px;

    white-space: nowrap;
}


/* =========================================================
   Updated
   ========================================================= */

.country-price-card .price-updated {
    margin-top: 6px;

    color: #94a3b8;

    font-size: 10px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   View station link
   ========================================================= */

.country-price-card .station-card-link {
    margin-top: 8px;
}

.country-price-card .station-card-link a {
    width: 100%;
    min-height: 28px;

    padding: 5px 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 10px;
    line-height: 1;

    font-weight: 900;

    white-space: nowrap;
}

.country-price-card .station-card-link a:hover {
    background: #dbeafe;
    color: var(--blue-dark);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .country-price-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

}


@media (max-width: 760px) {

    .country-price-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .country-price-card {
        padding: 9px;

        border-radius: 13px;
    }

    .country-price-card .station-name a {
        font-size: 12px;
    }

    .country-price-card .station-city {
        margin-bottom: 5px;

        font-size: 9px;
    }

    .country-price-card .fuel-price-value {
        font-size: 17px;
    }

    .country-price-card .price-updated {
        margin-top: 5px;

        font-size: 8px;
    }

    .country-price-card .station-card-link {
        margin-top: 6px;
    }

    .country-price-card .station-card-link a {
        min-height: 25px;

        padding: 4px;

        border-radius: 8px;

        font-size: 8px;
    }

}


/* =========================================================
   PRICE VALUE
   ========================================================= */

.fuel-price-value {
    color: var(--text);

    font-size: 27px;

    line-height: 1.1;

    font-weight: 950;

    letter-spacing: -0.8px;
}


/* =========================================================
   UPDATED
   ========================================================= */

.price-updated {
    margin-top: 9px;

    color: #94a3b8;

    font-size: 12px;

    font-weight: 750;
}


/* =========================================================
   LINK BUTTON
   ========================================================= */

.station-card-link {
    margin-top: 14px;
}

.station-card-link a {
    display: inline-flex;

    min-height: 34px;

    padding:
        7px 12px;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background:
        var(--blue-light);

    color: var(--blue);

    font-size: 13px;

    font-weight: 900;
}

.station-card-link a:hover {
    background: #dbeafe;

    color: var(--blue-dark);
}


/* =========================================================
   CITY LIST
   ========================================================= */

.country-cities {
    margin-top: 40px;
}

.city-list {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.city-list-item {
    min-height: 68px;

    padding:
        13px 16px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    box-shadow:
        0 7px 22px
        rgba(
            15,
            23,
            42,
            0.035
        );

    transition: 0.18s;
}

.city-list-item:hover {
    transform:
        translateY(-1px);

    background: #f8fbff;

    border-color: #bfdbfe;
}

.city-list-item > a {
    color: var(--text);

    font-size: 15px;

    font-weight: 900;
}

.city-list-item > a:hover {
    color: var(--blue);
}

.city-station-count {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   STATION LIST
   ========================================================= */

.station-list,
.fuel-ranking {
    margin-top: 24px;
}

.station-card {
    position: relative;

    margin-bottom: 14px;

    padding: 22px 24px;

    background: #ffffff;

    border:
        1px solid
        rgba(
            226,
            232,
            240,
            0.90
        );

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow-small);

    transition:
        0.18s;
}

.station-card:hover {
    border-color: #bfdbfe;

    box-shadow:
        0 15px 35px
        rgba(
            15,
            23,
            42,
            0.07
        );
}

.station-card h3 a {
    color: var(--text);
}

.station-card h3 a:hover {
    color: var(--blue);
}

.station-brand {
    margin-bottom: 4px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 900;
}

.station-address {
    margin-bottom: 14px;

    color: var(--muted);

    font-size: 13px;

    font-weight: 650;
}

.station-address span {
    margin-left: 4px;
}


/* =========================================================
   STATION PRICE ROWS
   ========================================================= */

.station-prices {
    max-width: 500px;

    margin-top: 10px;

    padding:
        6px 14px;

    background: #f8fafc;

    border:
        1px solid #eef2f7;

    border-radius: 16px;
}

.station-price-row {
    min-height: 38px;

    padding:
        7px 0;

    display: flex;

    align-items: center;

    gap: 10px;

    border-bottom:
        1px solid
        #e8edf3;
}

.station-price-row:last-of-type {
    border-bottom: 0;
}

.fuel-name {
    min-width: 84px;

    color: #475569;

    font-size: 13px;

    font-weight: 900;
}

.fuel-price {
    color: var(--text);

    font-size: 17px;

    font-weight: 950;
}

.no-price {
    color: #94a3b8;

    font-weight: 800;
}

.old-price {
    color: #64748b;
}

.old-label {
    display: inline-flex;

    margin-left: 6px;

    padding:
        3px 7px;

    border-radius: 999px;

    background: #fff7ed;

    color: #c2410c;

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;
}


/* =========================================================
   STATION PAGE HEADER
   ========================================================= */

.station-header {
    position: relative;

    overflow: hidden;

    margin-bottom: 24px;

    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 26px;

    box-shadow:
        var(--shadow-small);
}

.station-header::after {
    content: "";

    position: absolute;

    right: -85px;
    top: -110px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        rgba(
            37,
            99,
            235,
            0.07
        );
}

.station-header > * {
    position: relative;

    z-index: 1;
}

.station-header h1 {
    font-size: 36px;
}

.station-header .station-brand {
    font-size: 14px;
}

.station-opening-hours {
    margin-top: 11px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   CURRENT PRICES
   ========================================================= */

.current-prices {
    margin-top: 28px;
}

.fuel-price-list {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 15px;
}

.fuel-price-card {
    position: relative;

    overflow: hidden;

    min-width: 0;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow-small);
}

.fuel-price-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            #38bdf8
        );
}

.fuel-price-card .fuel-name {
    min-width: 0;

    color: var(--muted);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}

.fuel-price-card .fuel-price-value {
    margin-top: 12px;

    font-size: 31px;
}


/* =========================================================
   PRICE REPORT
   ========================================================= */

.price-report {
    max-width: 680px;

    margin-top: 30px;

    padding: 25px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow-small);
}

.price-report h2 {
    margin-bottom: 8px;
}

.price-report > p {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 14px;
}

.price-input-row {
    margin-bottom: 13px;

    display: grid;

    grid-template-columns:
        90px
        170px
        auto;

    align-items: center;

    gap: 10px;
}

.price-input-row label {
    color: #334155;

    font-size: 14px;

    font-weight: 900;
}

.price-input-row input {
    width: 100%;

    height: 46px;

    padding:
        0 14px;

    color: var(--text);

    background: #f8fafc;

    border:
        1px solid
        #dbe3ef;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 800;

    outline: none;
}

.price-input-row input:focus {
    background: #ffffff;

    border-color: #93c5fd;

    box-shadow:
        0 0 0 4px
        rgba(
            37,
            99,
            235,
            0.12
        );
}

.save-prices-button {
    min-height: 46px;

    margin-top: 8px;

    padding:
        10px 20px;

    border: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #0ea5e9
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 9px 22px
        rgba(
            37,
            99,
            235,
            0.18
        );
}

.save-prices-button:hover {
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            #0284c7
        );
}


/* =========================================================
   MESSAGES
   ========================================================= */

.success-message,
.error-message {
    max-width: 680px;

    margin:
        20px 0;

    padding:
        14px 17px;

    border-radius: 16px;

    font-size: 14px;

    font-weight: 750;
}

.success-message {
    color: #047857;

    background: #ecfdf5;

    border:
        1px solid
        #a7f3d0;
}

.error-message {
    color: #b91c1c;

    background: #fef2f2;

    border:
        1px solid
        #fecaca;
}


/* =========================================================
   LOCATION
   ========================================================= */

.station-location {
    margin-top: 28px;

    padding: 22px;

    max-width: 680px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow-small);
}

.station-location p {
    margin-bottom: 8px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   EMPTY STATES
   ========================================================= */

.no-prices,
.no-stations {
    padding: 22px;

    color: var(--muted);

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow-small);
}

.no-prices p,
.no-stations p {
    margin: 0;
}


/* =========================================================
   GENERIC CARD
   ========================================================= */

.card {
    padding: 24px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow-small);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width:
        min(
            1180px,
            calc(100% - 32px)
        );

    margin:
        46px auto 18px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    box-shadow:
        var(--shadow-small);
}

.footer-inner {
    padding:
        32px 28px 24px;

    display: grid;

    grid-template-columns:
        2fr 1fr;

    gap: 32px;
}

.footer-brand {
    color: var(--text);

    font-size: 22px;

    font-weight: 950;

    letter-spacing: -0.5px;
}

.footer-brand > a {
    color: var(--text);

    font-weight: 950;
}

.footer-brand p,
.footer-text {
    max-width: 600px;

    margin:
        10px 0 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.footer-nav {
    display: grid;

    gap: 8px;
}

.footer-nav a {
    padding:
        8px 11px;

    border-radius: 12px;

    color: #475569;

    font-size: 13px;

    font-weight: 850;
}

.footer-nav a:hover {
    color: var(--blue);

    background:
        var(--blue-light);
}

.footer-copy {
    grid-column:
        1 / -1;

    margin-top: 4px;

    padding-top: 18px;

    border-top:
        1px solid
        var(--border);

    color: #94a3b8;

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .site-logo-slogan {
        display: none;
    }

    .city-list {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .fuel-price-list {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    body {
        background:
            radial-gradient(
                circle at top left,
                rgba(
                    37,
                    99,
                    235,
                    0.10
                ),
                transparent 27%
            ),
            var(--bg);
    }


    h1 {
        font-size: 30px;

        letter-spacing: -0.7px;
    }

    h2 {
        font-size: 22px;
    }


    /* =====================================================
       MOBILE HEADER
       ===================================================== */

    .site-header {
        width:
            calc(
                100% - 24px
            );

        margin:
            12px 12px 0;

        padding: 14px;

        display: block;

        border-radius: 22px;
		
		position: sticky;
		top: 8px;
		z-index: 1000;
		transition: box-shadow 0.2s ease;

        box-shadow:
            0 14px 36px
            rgba(
                15,
                23,
                42,
                0.08
            );
    }

    .header-top {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content:
            space-between;

        gap: 12px;
    }

    .site-logo-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 12px;

        font-size: 20px;
    }

    .site-logo-name {
        font-size: 23px;
    }

    .site-logo-slogan {
        display: none;
    }


    /* =====================================================
       BURGER
       ===================================================== */

    .mobile-menu-button {
        width: 44px;
        height: 38px;

        flex:
            0 0 44px;

        display:
            inline-flex;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 4px;

        padding: 0;

        background: #ffffff;

        border:
            1px solid
            var(--border);

        border-radius: 12px;

        box-shadow:
            0 8px 20px
            rgba(
                15,
                23,
                42,
                0.05
            );

        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;

        width: 18px;
        height: 2px;

        background: var(--text);

        border-radius: 999px;
    }


    /* =====================================================
       COUNTRY UNDER LOGO
       ===================================================== */

    .top-nav {
        width: 100%;

        margin-top: 12px;

        display: block;
    }

    .country-picker {
        width: 100%;

        padding:
            7px 9px;

        display: flex;

        align-items: center;

        flex-wrap: nowrap;

        gap: 7px;

        background: #ffffff;

        border:
            1px solid
            var(--border);

        border-radius: 16px;

        overflow: hidden;

        box-shadow:
            0 8px 22px
            rgba(
                15,
                23,
                42,
                0.04
            );
    }

    .country-picker-label {
        flex:
            0 0 auto;

        font-size: 12px;

        white-space: nowrap;
    }

    .country-select {
        flex:
            1 1 auto;

        width: auto;

        min-width: 0;

        height: 32px;

        padding:
            0 9px;

        background: #f8fafc;

        border: 0;

        border-radius: 12px;

        font-size: 12px;
    }


    /* =====================================================
       MOBILE MENU
       ===================================================== */

    .mobile-popup-menu {
        position: fixed !important;

        z-index: 10001;

        top: 14px;
        right: 14px;
        left: 14px;

        width: auto;

        max-width: 420px;

        margin-left: auto;

        padding: 12px;

        display: block;

        background: #ffffff;

        border:
            1px solid
            var(--border);

        border-radius: 22px;

        box-shadow:
            0 28px 70px
            rgba(
                15,
                23,
                42,
                0.28
            );

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-12px)
            scale(0.96);

        transition:
            0.18s;
    }

    body.mobile-menu-open
    .mobile-popup-menu {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }

    .mobile-popup-head {
        display: flex;

        align-items: center;

        justify-content:
            space-between;

        gap: 12px;

        margin-bottom: 4px;

        padding:
            4px 4px 10px;

        border-bottom:
            1px solid
            var(--border);
    }

    .mobile-popup-head strong {
        color: var(--text);

        font-size: 15px;

        font-weight: 950;
    }

    .mobile-popup-close {
        width: 32px;
        height: 32px;

        display:
            inline-flex;

        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;

        border-radius: 999px;

        background: #f8fafc;

        color: var(--text);

        font-size: 24px;

        line-height: 1;

        cursor: pointer;
    }

    .mobile-popup-menu > a {
        width: 100%;

        min-height: 43px;

        padding:
            10px 12px;

        display: flex;

        align-items: center;

        justify-content:
            flex-start;

        border-radius: 14px;

        color: var(--text);

        background: transparent;

        font-size: 14px;

        font-weight: 900;
    }

    .mobile-popup-menu > a:hover {
        color: var(--blue);

        background:
            var(--blue-light);
    }

    .mobile-menu-backdrop {
        display: none;
    }


    /* =====================================================
       MAIN
       ===================================================== */

    .site-main {
        padding:
            22px 14px
            10px;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .country-header {
        padding:
            28px 21px;

        border-radius: 24px;
    }

    .country-header h1 {
        font-size: 30px;
    }

    .country-header p {
        font-size: 14px;
    }


    .city-header,
    .city-fuel-header {
        padding:
            25px 21px;

        border-radius: 22px;
    }

    .city-header h1,
    .city-fuel-header h1 {
        font-size: 29px;
    }


    /* =====================================================
       FUEL TABS
       ===================================================== */

    .fuel-tabs {
        display: grid;

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 7px;
    }

    .fuel-tabs a {
        min-width: 0;

        padding:
            8px 6px;

        font-size: 13px;
    }


    /* =====================================================
       CARDS
       ===================================================== */

    .city-list {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .country-price-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .country-price-list > .country-price-card:nth-child(n+7) {
        display: none;
    }

    .country-price-card {
        padding: 9px;
        border-radius: 13px;
    }


    .station-card {
        padding: 19px;
    }

    .station-header {
        padding: 22px;
    }

	.station-header h1 {
		font-size: 29px;
	}

} /* END @media (max-width: 760px) */


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    margin-top: 54px;

    background: #ffffff;
    border-top: 1px solid #e2e8f0;

    box-shadow: none;
    border-radius: 0;
}


/* =========================================================
   FOOTER INNER
   ========================================================= */

.footer-inner {
    width: 100%;
    max-width: 1130px;

    margin: 0 auto;
    padding: 38px 0 30px;

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(220px, 1fr)
        minmax(300px, 1.55fr);

    gap: 24px;

    align-items: start;
}


/* =========================================================
   GENERIC COLUMN
   ========================================================= */

.footer-col {
    min-width: 0;
}


/* =========================================================
   LEFT / ABOUT
   ========================================================= */

.footer-about {
    padding-right: 10px;
}

.footer-brand {
    margin-bottom: 16px;

    color: #0f172a;

    font-size: 23px;
    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -0.5px;
}

.footer-text {
    margin: 0 0 13px;

    color: #64748b;

    font-size: 14.5px;
    line-height: 1.65;

    font-weight: 400;
}

.footer-small {
    margin: 16px 0 0;
    padding-top: 14px;

    border-top: 1px solid #e2e8f0;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   TITLES
   ========================================================= */

.footer-col > strong {
    display: block;

    margin-bottom: 14px;

    color: #0f172a;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* =========================================================
   PAGES CARD
   ========================================================= */

.footer-pages {
    padding: 22px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 22px;

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.035);
}

.footer-page-links {
    display: grid;
    gap: 9px;
}

.footer-page-links a {
    min-height: 46px;

    padding: 10px 12px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    color: #334155;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 800;

    transition: 0.18s;
}

.footer-page-links a:hover {
    color: #2563eb;

    background: #f8fbff;

    border-color: #bfdbfe;
}

.footer-page-links a span {
    width: 24px;
    height: 24px;

    min-width: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 13px;
    font-weight: 900;
}


/* =========================================================
   COUNTRIES CARD
   ========================================================= */

.footer-areas {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #eef2f7;
    border-radius: 22px;
}


/* =========================================================
   COUNTRY PILLS
   ========================================================= */

.footer-zones {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.footer-zones a {
    min-height: 34px;

    padding: 7px 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 999px;

    color: #475569;

    font-size: 13px;
    line-height: 1;

    font-weight: 900;

    white-space: nowrap;

    transition: 0.18s;
}

.footer-zones a:hover {
    color: #2563eb;

    background: #eff6ff;

    border-color: #bfdbfe;
}

.footer-zones a.active {
    color: #ffffff;

    background: #2563eb;

    border-color: #2563eb;
}

.footer-zone-flag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 15px;
    line-height: 1;
}

.footer-zone-name {
    line-height: 1;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 1130px;

    margin: 0 auto;

    padding: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
    flex-wrap: wrap;

    color: #94a3b8;

    font-size: 13px;
}

.footer-bottom a {
    color: #64748b;

    font-weight: 800;
}

.footer-bottom a:hover {
    color: #2563eb;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1180px) {

    .footer-inner,
    .footer-bottom {
        width: calc(100% - 40px);
    }

}


@media (max-width: 980px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .site-footer {
        margin-top: 38px;
    }

    .footer-inner {
        width: calc(100% - 28px);

        padding: 28px 0;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-brand {
        font-size: 21px;
    }

    .footer-text {
        font-size: 13.5px;
    }

    .footer-pages,
    .footer-areas {
        padding: 18px;

        border-radius: 20px;
    }

    .footer-page-links a {
        min-height: 43px;

        font-size: 13px;
    }

    .footer-zones {
        gap: 7px;
    }

    .footer-zones a {
        min-height: 32px;

        padding: 7px 9px;

        font-size: 12px;
    }

    .footer-bottom {
        width: calc(100% - 28px);

        padding-bottom: 24px;

        display: block;

        line-height: 1.8;
    }

    .footer-bottom span {
        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .city-list {
        grid-template-columns:
            1fr;
    }

    .country-price-card {
        padding: 19px;
    }

    .fuel-price-card {
        padding: 19px;
    }

    .price-report {
        padding: 20px;
    }

    .price-input-row {
        grid-template-columns:
            80px
            minmax(0, 1fr)
            auto;

        gap: 7px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .site-logo-name {
        font-size: 21px;
    }

    .country-picker-label {
        display: none;
    }

    .price-input-row {
        grid-template-columns:
            1fr;
    }

}

.country-intro,
.country-info {
    margin-top: 24px;
    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: var(--shadow-small);
}

.country-intro p,
.country-info p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.country-info p + p {
    margin-top: 10px;
}

.country-info h2 {
    margin-bottom: 12px;
}

.section-heading {
    margin-bottom: 15px;

    display: flex;
    align-items: center;

    gap: 10px;
}

.section-heading h2 {
    margin: 0;
}

.section-fuel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding: 4px 9px;

    border-radius: 999px;

    font-size: 11px;
    line-height: 1;

    font-weight: 900;
}

.section-fuel-badge.fuel-95 {
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.section-fuel-badge.fuel-98 {
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.section-fuel-badge.fuel-diesel {
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.city-intro,
.city-info {
    margin-top: 22px;
    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: var(--shadow-small);
}

.city-intro p,
.city-info p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.city-info p + p {
    margin-top: 10px;
}

.city-info h2 {
    margin-bottom: 12px;
}

.fuel-ranking-price {
    margin-top: 12px;

    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fuel-ranking-name {
    color: var(--muted);

    font-size: 13px;
    font-weight: 900;
}

.fuel-ranking-price .fuel-price-value {
    margin: 0;
}

.station-info {
    margin-top: 28px;
    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: var(--shadow-small);
}

.station-info h2 {
    margin-bottom: 12px;
}

.station-info p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.station-info p + p {
    margin-top: 10px;
}

.map-page-header {
    margin-top: 24px;
    padding: 26px 28px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow-small);
}

.map-page-header h1 {
    margin: 0;
}

.map-page-header p {
    margin: 10px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


.map-wrapper {
    margin-top: 22px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow);
}


.fuel-map {
    width: 100%;
    height: 650px;
}


.map-popup {
    min-width: 180px;
}

.map-popup-title {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}

.map-popup-address {
    margin-bottom: 8px;

    color: #64748b;

    font-size: 12px;
}

.map-popup-link {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


@media (max-width: 760px) {

    .fuel-map {
        height: 520px;
    }

    .map-page-header {
        padding: 20px;
    }

}

.map-wrapper {
    position: relative;
}

.locate-me-button {
    position: absolute;
    z-index: 500;

    top: 14px;
    right: 14px;

    padding: 10px 14px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow: 0 4px 18px rgba(15, 23, 42, .14);

    font-weight: 700;
    cursor: pointer;
}

.map-popup {
    min-width: 220px;
}

.map-popup-title {
    display: block;

    margin-bottom: 4px;

    color: var(--text);

    font-size: 15px;
    font-weight: 800;
}

.map-popup-address {
    margin-bottom: 10px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.4;
}


/* Prices */

.map-popup-prices {
    padding: 7px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.map-price-row {
    display: grid;

    grid-template-columns:
        minmax(58px, 1fr)
        auto;

    align-items: center;

    gap: 4px 10px;

    padding: 5px 0;
}

.map-price-name {
    color: var(--text);

    font-size: 12px;
    font-weight: 700;
}

.map-price-value {
    color: var(--text);

    font-size: 14px;
    font-weight: 900;
}

.map-price-empty {
    color: var(--muted);

    font-size: 14px;
}


/* Old price */

.map-price-old {
    color: var(--muted);
}

.map-price-old-label {
    grid-column: 2;

    margin-top: -4px;

    color: var(--red);

    font-size: 9px;
    font-weight: 700;
}


/* Updated */

.map-popup-updated {
    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;
}


/* Link */

.map-popup-link {
    display: inline-block;

    margin-top: 9px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
}

.map-popup-link:hover {
    text-decoration: underline;
}

/* =========================================================
   Station header + price report
   ========================================================= */

.station-header {
    padding: 28px;
}

.station-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 40px;

    align-items: start;
}


/* Left */

.station-header-info {
    min-width: 0;
}

.station-header-info h1 {
    margin: 0 0 10px;
}

.station-header-info .station-brand {
    margin-top: 4px;
}

.station-header-info .station-address {
    margin-top: 14px;
}

.station-header-info .station-opening-hours {
    margin-top: 12px;
}


/* Right */

.station-header-report {
    padding-left: 30px;

    border-left: 1px solid var(--border);
}

.station-header-report h2 {
    margin: 0;

    font-size: 18px;
    line-height: 1.25;
}

.station-header-report > p {
    margin: 7px 0 16px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.45;
}


/* Input rows */

.station-header-price-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.station-header-price-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);

    align-items: center;

    gap: 10px;
}

.station-header-price-row label {
    color: var(--text);

    font-size: 13px;
    font-weight: 800;
}

.station-header-price-field {
    display: flex;
    align-items: center;

    gap: 7px;
}

.station-header-price-field input {
    width: 110px;
    height: 38px;

    padding: 0 10px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;
}

.station-header-price-field input:focus {
    outline: none;
    border-color: var(--blue);

    box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

.station-header-price-field span {
    color: var(--muted);

    font-size: 12px;
}


/* Button */

.station-header-report .save-prices-button {
    margin-top: 14px;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 760px) {

    .station-header {
        padding: 22px 20px;
    }

    .station-header-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .station-header-report {
        padding: 20px 0 0;

        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .station-header-price-row {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .station-header-price-field input {
        width: 120px;
    }

}

/* =========================================================
   Report fuel price
   ========================================================= */

.report-header {
    margin-top: 24px;
    padding: 26px 28px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow-small);
}

.report-header h1 {
    margin: 0;
}

.report-header p {
    margin: 9px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


.nearby-stations {
    margin-top: 20px;
    padding: 24px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow-small);
}


.location-loading,
.location-error {
    padding: 28px 15px;

    text-align: center;
}

.location-icon {
    margin-bottom: 10px;

    font-size: 32px;
}

.location-loading strong,
.location-error strong {
    display: block;

    font-size: 17px;
}

.location-loading p,
.location-error p {
    margin: 7px 0 0;

    color: var(--muted);

    font-size: 13px;
}


.nearby-station-list {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 15px;
}


.nearby-station-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 15px 17px;

    color: var(--text);

    background: var(--blue-light);

    border: 1px solid #dbeafe;
    border-radius: 15px;

    text-decoration: none;
}

.nearby-station-card:hover {
    border-color: var(--blue);
}


.nearby-station-info {
    min-width: 0;
}


.nearby-station-name {
    display: block;

    font-size: 15px;
}


.nearby-station-address {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}


.nearby-station-distance {
    flex: 0 0 auto;

    color: var(--blue);

    font-size: 14px;
    font-weight: 900;
}


.report-map-button {
    display: inline-block;

    margin-top: 15px;
    padding: 10px 16px;

    background: var(--blue);

    color: #fff;

    border-radius: 11px;

    font-weight: 800;
    text-decoration: none;
}

.mobile-report-link {
    display: none !important;
}

@media (max-width: 760px) {

    .mobile-report-link {
        display: block !important;

        color: var(--blue) !important;
        font-weight: 900 !important;
    }

}

/* =========================================================
   Price confirmation
   ========================================================= */

.confirm-price-form {
    margin-top: 10px;
}

.confirm-price-button {
    padding: 7px 11px;

    background: #ecfdf5;

    color: #047857;

    border: 1px solid #a7f3d0;
    border-radius: 9px;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;
}

.confirm-price-button:hover {
    background: #d1fae5;
}


.price-confirmation-status {
    margin-top: 6px;

    color: #059669;

    font-size: 11px;
    font-weight: 800;
}

.station-coordinates {
    display: flex;
    gap: 10px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.4;
}

.station-coordinates span + span::before {
    content: ",";
    margin-right: 10px;
}


.station-map-link {
    margin-top: 10px;
}

.station-map-link a {
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;

    background: var(--blue-light);
    color: var(--blue);

    border: 1px solid #bfdbfe;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
}

.station-map-link a:hover {
    border-color: var(--blue);
}

/* =========================================================
   Pending fuel price
   ========================================================= */

.pending-price {
    margin-top: 16px;
    padding: 14px;

    background: #fff7ed;

    border: 1px solid #fed7aa;
    border-radius: 14px;
}

.pending-price-label {
    color: #c2410c;

    font-size: 11px;
    font-weight: 900;
    line-height: 1.4;
}

.pending-price-value {
    margin-top: 7px;

    color: var(--text);

    font-size: 21px;
    font-weight: 900;
}

.pending-price-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.4;
}

.pending-vote-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 12px;
}

.pending-vote-buttons form {
    margin: 0;
}

.pending-confirm-button,
.pending-reject-button {
    padding: 8px 11px;

    background: #fff;

    border-radius: 9px;

    font-size: 11px;
    font-weight: 900;

    cursor: pointer;
}

.pending-confirm-button {
    color: #047857;

    border: 1px solid #a7f3d0;
}

.pending-confirm-button:hover {
    background: #ecfdf5;
}

.pending-reject-button {
    color: #b91c1c;

    border: 1px solid #fecaca;
}

.pending-reject-button:hover {
    background: #fef2f2;
}

@media (max-width: 760px) {

    .pending-vote-buttons {
        flex-direction: column;
    }

    .pending-vote-buttons form {
        width: 100%;
    }

    .pending-confirm-button,
    .pending-reject-button {
        width: 100%;
    }
}

/* =========================================================
   Content pages
   FAQ / Contact
   ========================================================= */

.content-page {
    max-width: 900px;
    margin: 24px auto 50px;
}

.content-page-header {
    margin-bottom: 22px;
    padding: 28px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow-small);
}

.content-page-header h1 {
    margin: 0;

    color: var(--text);

    font-size: 30px;
    line-height: 1.15;
}

.content-page-header p {
    margin: 10px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.65;
}


/* FAQ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 22px 24px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow-small);
}

.faq-item h2 {
    margin: 0;

    color: var(--text);

    font-size: 17px;
    line-height: 1.35;
}

.faq-item p {
    margin: 9px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}


/* Contact */

.contact-card {
    margin-top: 14px;
    padding: 22px 24px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow-small);
}

.contact-card h2 {
    margin: 0;

    color: var(--text);

    font-size: 18px;
}

.contact-card p {
    margin: 9px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.contact-email {
    display: inline-flex;

    margin-top: 14px;
    padding: 10px 14px;

    background: var(--blue-light);

    color: var(--blue);

    border: 1px solid #bfdbfe;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}

.contact-email:hover {
    border-color: var(--blue);
}


@media (max-width: 760px) {

    .content-page {
        margin-top: 16px;
    }

    .content-page-header {
        padding: 21px 18px;
    }

    .content-page-header h1 {
        font-size: 25px;
    }

    .faq-item,
    .contact-card {
        padding: 18px;
    }
}

/* =========================================================
   MAP STATION MARKERS
   ========================================================= */

.station-map-icon-wrapper {
    background: transparent !important;
    border: 0 !important;
}


/*
 * Бензоколонка
 */
.station-map-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 5px 14px
        rgba(15, 23, 42, 0.20);

    font-size: 19px;
    line-height: 1;
}


/*
 * Расширенный маркер
 */
.station-map-marker-expanded {
    display: flex;
    align-items: center;

    width: max-content;

    position: relative;
}


/*
 * Цены справа
 */
.station-map-marker-prices {
    min-width: 116px;

    margin-left: 5px;
    padding: 6px 8px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow:
        0 5px 16px
        rgba(15, 23, 42, 0.16);

    backdrop-filter: blur(5px);
}


.station-map-marker-prices > div {
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


.station-map-marker-prices span {
    color: var(--muted);

    font-size: 9px;
    line-height: 1;

    font-weight: 800;

    white-space: nowrap;
}


.station-map-marker-prices strong {
    color: var(--text);

    font-size: 11px;
    line-height: 1;

    font-weight: 950;

    white-space: nowrap;
}

/* =========================================================
   COUNTRY ALL PRICES
   ========================================================= */

.prices-page {
    width: 100%;
}

.prices-page-head {
    margin-bottom: 22px;
}

.prices-page-head h1 {
    margin: 0 0 8px;
}

.prices-page-head p {
    margin: 0;
    color: #667085;
}

.country-all-prices {
    width: 100%;
    overflow: hidden;

    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.country-all-prices-header,
.country-all-prices-row {
    display: grid;

    grid-template-columns:
        minmax(260px, 1fr)
        105px
        105px
        105px
        115px;

    align-items: center;

    gap: 12px;
}

.country-all-prices-header {
    padding: 12px 16px;

    background: #f8fafc;

    border-bottom: 1px solid #e5e7eb;

    font-size: 13px;
    font-weight: 700;
}

.country-all-prices-row {
    padding: 13px 16px;

    border-bottom: 1px solid #edf0f2;

    color: inherit;
    text-decoration: none;

    transition: background .15s ease;
}

.country-all-prices-row:last-child {
    border-bottom: 0;
}

.country-all-prices-row:hover {
    background: #f8fafc;
}

.country-all-prices-station {
    min-width: 0;
}

.country-all-prices-station strong {
    display: block;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.country-all-prices-station span {
    display: block;

    margin-top: 3px;

    font-size: 13px;
    color: #667085;
}

.country-all-price {
    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;
}

.country-all-price.price-95 {
    font-size: 18px;
    font-weight: 800;
}

.country-all-price .currency {
    font-size: 12px;
    font-weight: 500;
}

.no-price {
    color: #a0a6ad;
}

.country-all-prices-updated {
    font-size: 13px;
    color: #667085;

    white-space: nowrap;
}


@media (max-width: 760px) {

    .country-all-prices {
        border-radius: 10px;
    }

    .country-all-prices-header {
        display: none;
    }

    .country-all-prices-row {
        grid-template-columns:
            minmax(120px, 1fr)
            70px
            70px
            70px;

        gap: 6px;

        padding: 12px 10px;
    }

    .country-all-price {
        text-align: right;
        font-size: 14px;
    }

    .country-all-price.price-95 {
        font-size: 16px;
    }

    .country-all-prices-updated {
        grid-column: 1 / -1;

        margin-top: 2px;

        font-size: 12px;
    }
}