/* ═══════════════════════════════════════════════════════════
   Alpenzaun Shipping Info — [alpenzaun_shipping_info]
   4 zóny + 2 info bloky · Alpenzaun farby
   ═══════════════════════════════════════════════════════════ */

.az-ship {
    --az-red:    #f04e23;
    --az-red2:   #772008;
    --az-black:  #141414;
    --az-khaki:  #3d403a;
    --az-white:  #fafaf8;
    --az-steel:  #a8a8a0;
    --az-line:   rgba(20, 20, 20, .08);

    width: 100%;
    background: var(--az-white);
    color: var(--az-black);
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    padding: 80px 0;
}
.az-ship * { box-sizing: border-box; }

.az-ship-inner {
    width: 100%;
    max-width: 1675px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── HEAD ─── */
.az-ship-head { margin-bottom: 48px; max-width: 720px; }
.az-ship-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(240, 78, 35, .1);
    border: 1px solid rgba(240, 78, 35, .25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--az-red);
    margin-bottom: 18px;
}
.az-ship-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--az-red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(240, 78, 35, .6);
}
.az-ship-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.05;
    color: var(--az-black);
    margin: 0 0 12px;
}
.az-ship-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--az-khaki);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   AUSTRIA MAP — reálny SVG outline + zone badges overlay
   ═══════════════════════════════════════════════════════════ */
.az-ship-map {
    margin: 0 0 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 980px) {
    .az-ship-map { grid-template-columns: 1fr; }
}
.az-ship-map-canvas {
    position: relative;
    background: #fff;
    border: 1px solid var(--az-line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px -10px rgba(20, 20, 20, .08);
}
/* ── CUSTOM INLINE SVG MAP ── */
.azmap-svg {
    width: 100%;
    height: auto;
    display: block;
    max-height: 460px;
}

/* Background silueta — svetlý podklad */
.azmap-outline {
    fill: rgba(20, 20, 20, .04);
    stroke: rgba(20, 20, 20, .08);
    stroke-width: 1;
}

/* Provincie — farby podľa zóny */
.azmap-state {
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linejoin: round;
    cursor: pointer;
    transition: fill 220ms ease, filter 220ms ease;
}
.azmap-state[data-zone="1"] { fill: #f04e23; }
.azmap-state[data-zone="2"] { fill: #d63d13; }
.azmap-state[data-zone="3"] { fill: #b04020; }
.azmap-state[data-zone="4"] { fill: #772008; }

/* Hover state (priamo nad provinciou alebo cez .is-active z legend hover) */
.azmap-state:hover,
.azmap-state.is-active {
    fill: #141414 !important;
    filter: drop-shadow(0 2px 6px rgba(20, 20, 20, .3));
}

/* Wien — mestská enkláva, hrubší outline */
.azmap-state--wien {
    stroke: #fff;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35));
}

/* Labels — biely text s hrubým tmavým "halo" outlinom.
   Čitateľný na svetlom canvas pozadí aj na farebných províncíách. */
.azmap-labels text {
    font-family: 'Instrument Sans', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    fill: #fff;
    text-anchor: middle;
    pointer-events: none;
    letter-spacing: -.01em;
    paint-order: stroke fill;
    stroke: #141414;
    stroke-width: 3;
    stroke-linejoin: round;
}
.azmap-label-wien {
    font-size: 9.5px !important;
    stroke-width: 2.5 !important;
}

/* ── LEGEND — vertikálny stack vpravo vedľa mapy ── */
.azmap-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: stretch;
    justify-content: space-between;
}
.azmap-leg {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--az-line);
    border-radius: 14px;
    padding: 18px 20px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    flex: 1;
}
.azmap-leg:hover,
.azmap-leg.is-hover {
    transform: translateX(-3px);
    box-shadow: 0 6px 16px -4px rgba(20, 20, 20, .12);
    border-color: rgba(240, 78, 35, .35);
    background: #fff8f5;
}
.azmap-leg-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 4px 10px -2px rgba(20, 20, 20, .2);
}
.azmap-leg div { display: flex; flex-direction: column; gap: 3px; line-height: 1.2; min-width: 0; }
.azmap-leg strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--az-black);
    letter-spacing: -.015em;
}
.azmap-leg small {
    font-size: 12.5px;
    color: var(--az-khaki);
    line-height: 1.35;
}
.azmap-leg--z1 .azmap-leg-num { background: #f04e23; }
.azmap-leg--z2 .azmap-leg-num { background: #d63d13; }
.azmap-leg--z3 .azmap-leg-num { background: #b04020; }
.azmap-leg--z4 .azmap-leg-num { background: #772008; }

/* Mobile */
@media (max-width: 980px) {
    .azmap-legend {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .azmap-leg { padding: 14px 16px; flex: initial; }
}
@media (max-width: 720px) {
    .az-ship-map { margin-bottom: 40px; gap: 18px; }
    .az-ship-map-canvas { padding: 14px; }
    .azmap-badge { font-size: 10px; padding: 4px 9px 4px 4px; gap: 5px; }
    .azmap-badge-name { display: none; }
    .azmap-badge-num { width: 24px; height: 24px; font-size: 12px; }
    .azmap-leg { padding: 12px 14px; gap: 10px; }
    .azmap-leg-num { width: 36px; height: 36px; font-size: 16px; }
    .azmap-leg strong { font-size: 13px; }
    .azmap-leg small { font-size: 11.5px; }
}
@media (max-width: 480px) {
    .azmap-legend { grid-template-columns: 1fr; }
}

/* ─── ZÓNY GRID ─── */
.az-ship-zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
@media (max-width: 980px) {
    .az-ship-zones { grid-template-columns: 1fr; }
}

/* ─── ZÓNA CARD ─── */
.az-ship-zone {
    background: #fff;
    border: 1px solid var(--az-line);
    border-radius: 16px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: all .3s cubic-bezier(.2, .7, .2, 1);
    position: relative;
    overflow: hidden;
}
.az-ship-zone:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 78, 35, .3);
    box-shadow: 0 20px 40px -16px rgba(20, 20, 20, .12);
}

/* Highlight variant (Zóna 1 — najobľúbenejšia) */
.az-ship-zone--hl {
    border-color: rgba(240, 78, 35, .35);
    background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
}
.az-ship-zone--hl::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--az-red), var(--az-red2));
}

/* Individual price variant (Zóna 4) */
.az-ship-zone--ind .az-ship-zone-priceval { color: var(--az-khaki); font-size: 22px; }

/* HEAD */
.az-ship-zone-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--az-line);
}
.az-ship-zone-num {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--az-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.az-ship-zone--hl .az-ship-zone-num {
    background: var(--az-red);
}
.az-ship-zone-titlewrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}
.az-ship-zone-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--az-steel);
}
.az-ship-zone-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.25;
    color: var(--az-black);
    margin: 0;
}

/* ROWS */
.az-ship-zone-rows {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.az-ship-zone-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
}
.az-ship-zone-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(240, 78, 35, .08);
    color: var(--az-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.az-ship-zone-icon svg { width: 16px; height: 16px; }
.az-ship-zone-rowlbl {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--az-steel);
}
.az-ship-zone-rowval {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--az-black);
    text-align: right;
    letter-spacing: -.005em;
}

/* PRICE BLOCK */
.az-ship-zone-price {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--az-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}
.az-ship-zone-priceblk {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.az-ship-zone-pricelbl {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--az-steel);
}
.az-ship-zone-priceval {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--az-red);
    line-height: 1;
}
.az-ship-zone-pricenote {
    font-size: 11px;
    color: var(--az-steel);
    margin-top: 2px;
}

.az-ship-zone-free {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(58, 155, 92, .08);
    border: 1px solid rgba(58, 155, 92, .25);
    border-radius: 10px;
}
.az-ship-zone-freebadge {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #3a9b5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.az-ship-zone-freebadge svg { width: 14px; height: 14px; }
.az-ship-zone-freetxt {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
    min-width: 0;
}
.az-ship-zone-freetxt strong {
    font-size: 12px;
    font-weight: 700;
    color: #1c6b3a;
    letter-spacing: -.005em;
}
.az-ship-zone-freetxt small {
    font-size: 10.5px;
    color: #3a9b5c;
}

/* Individual variant — žltý badge */
.az-ship-zone-free--ind {
    background: rgba(240, 78, 35, .08);
    border-color: rgba(240, 78, 35, .25);
}
.az-ship-zone-free--ind .az-ship-zone-freebadge { background: var(--az-red); }
.az-ship-zone-free--ind .az-ship-zone-freetxt strong { color: var(--az-red2); }
.az-ship-zone-free--ind .az-ship-zone-freetxt small { color: var(--az-red); }

/* ─── INFO BLOKY ─── */
.az-ship-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 980px) {
    .az-ship-info { grid-template-columns: 1fr; }
}
.az-ship-info-card {
    background: var(--az-black);
    color: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
}
.az-ship-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--az-red), var(--az-red2));
}
.az-ship-info-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.az-ship-info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(240, 78, 35, .15);
    color: var(--az-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.az-ship-info-icon svg { width: 22px; height: 22px; }
.az-ship-info-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #fff;
    margin: 0;
}
.az-ship-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.az-ship-info-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
}
.az-ship-info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--az-red);
    border-radius: 50%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
    .az-ship { padding: 56px 0; }
    .az-ship-inner { padding: 0 20px; }
    .az-ship-head { margin-bottom: 36px; }
    .az-ship-zones { gap: 16px; margin-bottom: 40px; }
    .az-ship-zone { padding: 22px 20px; }
    .az-ship-zone-head { gap: 14px; }
    .az-ship-zone-num { width: 46px; height: 46px; font-size: 17px; }
    .az-ship-zone-title { font-size: 15.5px; }
    .az-ship-zone-row { grid-template-columns: 28px 1fr; gap: 10px; }
    .az-ship-zone-icon { width: 28px; height: 28px; }
    .az-ship-zone-icon svg { width: 14px; height: 14px; }
    .az-ship-zone-rowval { text-align: left; grid-column: 2; font-size: 13px; }
    .az-ship-zone-rowlbl { grid-column: 2; }
    .az-ship-zone-price { grid-template-columns: 1fr; gap: 14px; }
    .az-ship-zone-priceval { font-size: 24px; }
    .az-ship-info-card { padding: 24px 22px; }
    .az-ship-info-title { font-size: 16px; }
}
