/*
 Theme Name:   Drinkpoint Child
 Theme URI:    https://drinkpoint.sk
 Description:  Child téma pre Astra — prémiový obchod s alkoholom Drinkpoint Bratislava.
 Author:       Drinkpoint
 Author URI:   https://drinkpoint.sk
 Template:     astra
 Version:      1.0.0
 Text Domain:  drinkpoint-child
*/

/* ============================================================
   CSS PREMENNÉ
   ============================================================ */
:root {
    --navy: #0D2B3E;
    --navy-light: #143A52;
    --navy-dark: #091E2C;
    --gold: #F5A623;
    --gold-hover: #E09510;
    --orange: #E8571A;
    --orange-hover: #D04A12;
    --white: #FFFFFF;
    --gray-light: #F4F6F8;
    --gray: #8899A6;
    --gray-dark: #5C6E7C;
    --text-light: rgba(255, 255, 255, 0.85);
    --border: #D1D9E0;
    --shadow: 0 4px 20px rgba(13, 43, 62, 0.15);
    --shadow-lg: 0 8px 40px rgba(13, 43, 62, 0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --container: 1200px;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   RESET A ZÁKLAD
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

.dp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

/* ============================================================
   INFO BANNER
   ============================================================ */
.dp-infobanner {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    display: none;
}

.dp-infobanner.is-active {
    display: block;
}

.dp-infobanner-text {
    display: inline;
}

.dp-infobanner-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--navy);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    line-height: 1;
    padding: 4px;
}

.dp-infobanner-close:hover {
    opacity: 1;
}

/* ============================================================
   NAVIGÁCIA
   ============================================================ */
.dp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.dp-nav.has-banner {
    top: 40px;
}

.dp-nav-scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

/* Na vnútorných stránkach (blog, single, o-nas…) sa nav vždy správa ako scrollnutý —
   hero sekcia nie je a na svetlom pozadí by biele logo aj biele menu zmizli. */
body:not(.home) .dp-nav {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

body:not(.home) .dp-nav-menu a {
    color: var(--navy);
}

body:not(.home) .dp-nav-lang {
    border-color: var(--navy);
    color: var(--navy);
}

body:not(.home) .dp-nav-logo .logo-white {
    display: none;
}

body:not(.home) .dp-nav-logo .logo-color {
    display: block;
}

.dp-nav-scrolled.has-banner {
    top: 0;
}

.dp-nav-inner {
    display: flex;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo vľavo, všetko ostatné vpravo — margin-right: auto postrčí zvyšok k pravému okraju */
.dp-nav-logo {
    flex-shrink: 0;
    margin-right: auto;
    line-height: 0;
}

.dp-nav-menu + .dp-nav-lang {
    margin-left: 32px;
}

.dp-nav-logo img {
    /* Stabilná výška loga vo všetkých stavoch — zabraňuje "skoku"
       pri scroll-prepnutí pozadia (transparentné → biele) a zmene
       SVG variantu (biele → farebné). Header sa zmenšuje cez padding. */
    height: 44px;
    width: auto;
    display: block;
}

.dp-nav-logo .logo-white {
    display: block;
}

.dp-nav-logo .logo-color {
    display: none;
}

.dp-nav-scrolled .dp-nav-logo .logo-white {
    display: none;
}

.dp-nav-scrolled .dp-nav-logo .logo-color {
    display: block;
}

.dp-nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.dp-nav-menu a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.dp-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.dp-nav-menu a:hover::after {
    width: 100%;
}

.dp-nav-scrolled .dp-nav-menu a {
    color: var(--navy);
}

.dp-nav-lang {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.dp-nav-lang:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.dp-nav-scrolled .dp-nav-lang {
    border-color: var(--navy);
    color: var(--navy);
}

.dp-nav-scrolled .dp-nav-lang:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   AGE GATE — Glassmorphism
   ============================================================ */
.dp-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 43, 62, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dp-age-gate.is-hidden {
    display: none;
}

.dp-age-gate-content {
    max-width: 480px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.dp-age-gate-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 24px;
    font-style: italic;
    line-height: 1.5;
}

.dp-age-gate-logo {
    width: 180px;
    margin: 0 auto 32px;
}

.dp-age-gate h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
}

.dp-age-gate p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
}

.dp-age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dp-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.dp-btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.dp-btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--navy);
}

.dp-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.dp-btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* Denial screen */
.dp-age-denied {
    display: none;
}

.dp-age-denied.is-active {
    display: block;
}

.dp-age-denied h2 {
    color: var(--orange);
}

.dp-age-denied p {
    color: var(--text-light);
}

.dp-age-gate-main.is-hidden {
    display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.dp-hero {
    position: relative;
    padding: 140px 24px 100px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy-dark);
    overflow: hidden;
}

.dp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.dp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 30, 44, 0.6) 0%, rgba(9, 30, 44, 0.9) 100%);
}

.dp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.dp-hero h1 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 16px;
}

.dp-hero h1 span {
    color: var(--gold);
}

.dp-hero p {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 32px;
}

.dp-hero .dp-btn {
    font-size: 15px;
}

/* ============================================================
   SEKCIE — SPOLOČNÉ
   ============================================================ */
.dp-section {
    padding: 96px 0;
}

.dp-section-dark {
    background: var(--navy);
    color: var(--white);
}

.dp-section-dark h2,
.dp-section-dark h3 {
    color: var(--white);
}

.dp-section-gray {
    background: var(--gray-light);
}

.dp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.dp-section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.dp-section-header .dp-gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.dp-section-header p {
    color: var(--gray-dark);
    font-size: 18px;
    max-width: 600px;
    margin: 16px auto 0;
}

.dp-section-dark .dp-section-header p {
    color: var(--text-light);
}

/* ============================================================
   O NÁS
   ============================================================ */
.dp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dp-about-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.dp-about-photo-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

.dp-about-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-about-photo-small {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 6;
}

.dp-about-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-about-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.dp-about-text p {
    color: var(--gray-dark);
    margin-bottom: 16px;
    font-size: 17px;
}

.dp-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.dp-stat {
    text-align: center;
}

.dp-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.dp-stat-label {
    font-size: 13px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================================
   SORTIMENT — Bento Grid
   ============================================================ */
.dp-sort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dp-sort-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background: var(--navy-light);
    box-shadow: 0 4px 20px rgba(13, 43, 62, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    isolation: isolate;
}

.dp-sort-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.45), 0 12px 40px rgba(13, 43, 62, 0.25);
}

.dp-sort-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dp-sort-card:hover img {
    transform: scale(1.06);
}

.dp-sort-card-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 0;
}

.dp-sort-card-icon svg {
    width: 96px;
    height: 96px;
    opacity: 0.35;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.dp-sort-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(9, 30, 44, 0.55) 55%, rgba(9, 30, 44, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 1;
}

.dp-sort-card-title {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.dp-sort-card-tagline {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
}

/* ============================================================
   PICKUP / MABO — ikona + text + zoznam
   ============================================================ */
.dp-pickup {
    padding: 80px 0;
}

.dp-pickup-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.dp-pickup-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dp-pickup-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.dp-pickup-icon svg path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.dp-pickup-kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dp-pickup h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dp-pickup p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 560px;
}

.dp-pickup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-pickup-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
}

.dp-pickup-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 10px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}

/* ============================================================
   HODINY + KONTAKT — dvojstĺpcový layout
   ============================================================ */
.dp-where-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.dp-where-col {
    min-width: 0;
}

.dp-where-kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dp-where-col h2 {
    font-size: 36px;
    margin-bottom: 32px;
    line-height: 1.2;
}

.dp-where-extras {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.dp-where-extras li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.5;
}

.dp-where-extras svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: none;
    stroke: var(--gray);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dp-contact-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dp-contact-row .dp-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.dp-contact-row .dp-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--orange);
}

.dp-contact-text {
    flex: 1;
    min-width: 0;
}

.dp-contact-text .dp-contact-label {
    margin-bottom: 2px;
}

.dp-contact-text .dp-contact-value {
    font-size: 16px;
    word-break: break-word;
}

/* ============================================================
   MAP — link na Google Maps nad iframe
   ============================================================ */
.dp-map-section {
    position: relative;
}

.dp-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin: 0 auto 16px;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    box-shadow: var(--shadow);
    transition: background var(--transition), color var(--transition);
}

.dp-map-link:hover {
    background: var(--gold);
    color: var(--navy);
}

.dp-map-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   OTVÁRACIE HODINY
   ============================================================ */
.dp-hours-table {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.dp-hours-row-fe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
}

.dp-hours-row-fe:last-child {
    border-bottom: none;
}

.dp-hours-day {
    font-weight: 600;
    color: var(--navy);
}

.dp-hours-time {
    color: var(--gold);
    font-weight: 600;
}

.dp-hours-closed {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.dp-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.dp-contact-item {
    text-align: center;
}

.dp-contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.dp-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--navy);
}

.dp-contact-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dp-contact-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
}

.dp-contact-value a {
    color: var(--navy);
}

.dp-contact-value a:hover {
    color: var(--gold);
}

/* ============================================================
   GOOGLE MAPS
   ============================================================ */
.dp-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.dp-newsletter {
    text-align: center;
}

.dp-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.dp-newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.dp-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

.dp-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dp-newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.dp-newsletter-checkboxes {
    text-align: left;
    margin-bottom: 8px;
}

.dp-newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
}

.dp-newsletter-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold);
}

.dp-newsletter-checkbox a {
    color: var(--gold);
    text-decoration: underline;
}

.dp-newsletter-msg {
    margin-top: 12px;
    font-size: 14px;
    display: none;
}

.dp-newsletter-msg.is-success {
    display: block;
    color: #2ECC71;
}

.dp-newsletter-msg.is-error {
    display: block;
    color: var(--orange);
}

/* ============================================================
   FOOTER
   ============================================================ */
.dp-footer {
    background: var(--navy-dark);
    color: var(--text-light);
    padding: 64px 0 0;
}

.dp-footer-grid {
    display: grid;
    /* Logo širšie (brand + popis), ostatné stĺpce kompaktné — obsah si určí šírku */
    grid-template-columns: minmax(240px, 1.4fr) auto auto auto;
    gap: 48px;
    margin-bottom: 48px;
    justify-content: space-between;
}

.dp-footer-grid > div {
    min-width: 0;
}

.dp-footer-logo img {
    height: 48px;
    margin-bottom: 16px;
}

.dp-footer-logo p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.dp-footer h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 16px;
    margin: 0 0 16px;
    line-height: 1.2;
}

.dp-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pevná výška riadku vo všetkých 3 stĺpcoch pätičky, aby Navigácia,
   Otváracie hodiny a Kontakt začínali a končili na rovnakých Y pozíciách. */
.dp-footer-nav li,
.dp-footer-hours-row,
.dp-footer-contact p {
    height: 28px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 14px;
    line-height: 1;
}

.dp-footer-nav li {
    list-style: none;
}

.dp-footer-nav a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.dp-footer-nav a:hover {
    color: var(--gold);
}

.dp-footer-hours {
    font-size: 14px;
    line-height: 1.8;
}

.dp-footer-hours-row {
    gap: 16px;
}

.dp-footer-hours-row > span:first-child {
    min-width: 72px;
}

/* Kontakt stĺpec — odstrániť default browser margin na <p> aby prvý riadok
   začínal na rovnakej Y pozícii ako "O nás" a "Po — Pi". */
.dp-footer-contact {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.dp-footer-contact p {
    word-break: break-word;
}

.dp-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.dp-footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.dp-footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.dp-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.dp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
}

/* ============================================================
   BLOG ARCHÍV
   ============================================================ */
.dp-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* Prázdny stav — blog ešte nemá články */
.dp-blog-empty {
    max-width: 560px;
    margin: 40px auto 20px;
    text-align: center;
    color: var(--gray-dark);
}

.dp-blog-empty p:first-child {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 12px;
}

.dp-blog-empty p:last-child {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.dp-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.dp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dp-blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.dp-blog-card-image img {
    object-position: center top;  /* zachová hornú časť (kde býva titulok / hlavné prvky) */
}

.dp-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.dp-blog-card:hover .dp-blog-card-image img {
    transform: scale(1.05);
}

.dp-blog-card-body {
    padding: 28px 28px 24px;
}

.dp-blog-card-cat {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.dp-blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.dp-blog-card-title a {
    color: var(--navy);
}

.dp-blog-card-title a:hover {
    color: var(--gold);
}

.dp-blog-card-excerpt {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dp-blog-card-meta {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================================
   BLOG DETAIL
   ============================================================ */
.dp-single {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 24px 96px;
}

.dp-single-header {
    margin-bottom: 40px;
}

.dp-single-cat {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.dp-single h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.dp-single-meta {
    font-size: 14px;
    color: var(--gray);
}

.dp-single-featured {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 3 / 2;  /* 3:2 univerzálny pomer pre cover obrázky blogu */
}

.dp-single-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;  /* Pri portrétových obrázkoch zachová hornú časť (titulky/text) */
}

.dp-single-content {
    font-size: 18px;
    line-height: 1.8;
}

.dp-single-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.dp-single-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.dp-single-content p {
    margin-bottom: 20px;
}

.dp-single-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--gray-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--gray-dark);
}

.dp-single-content ul,
.dp-single-content ol {
    margin: 0 0 20px 24px;
}

.dp-single-content li {
    margin-bottom: 8px;
}

/* Autor */
.dp-author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 32px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    margin-top: 56px;
}

.dp-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dp-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-author-name {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 4px;
}

.dp-author-bio {
    font-size: 14px;
    color: var(--gray-dark);
}

/* ============================================================
   STRÁNKA O NÁS
   ============================================================ */
.dp-page-header {
    background: var(--navy);
    padding: 160px 24px 80px;
    text-align: center;
}

.dp-page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 8px;
}

.dp-page-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* Slim varianta pre blog archív — moderný minimal hero */
.dp-page-header--blog {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 130px 24px 36px;
    text-align: left;
}

.dp-page-header--blog .dp-container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.dp-page-header--blog h1 {
    color: var(--navy);
    font-size: 42px;
    margin: 0;
    letter-spacing: -0.01em;
}

.dp-page-header--blog p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
    max-width: 420px;
}

@media (max-width: 640px) {
    .dp-page-header--blog {
        padding: 110px 20px 24px;
    }
    .dp-page-header--blog h1 { font-size: 32px; }
    .dp-page-header--blog p { font-size: 14px; }
}

.dp-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    font-size: 17px;
    line-height: 1.8;
}

.dp-page-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.dp-page-content ul {
    margin: 0 0 24px 20px;
}

.dp-page-content li {
    margin-bottom: 8px;
}

.dp-page-content p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.dp-page-kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dp-gdpr-contact {
    list-style: none;
    padding: 20px 24px;
    background: var(--gray-light);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 16px 0 24px;
}

.dp-gdpr-contact li {
    padding: 4px 0;
    color: var(--navy);
}

.dp-gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 15px;
}

.dp-gdpr-table th,
.dp-gdpr-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.dp-gdpr-table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--navy);
}

.dp-gdpr-table td {
    color: var(--gray-dark);
}

.dp-gdpr-rights {
    margin: 16px 0 24px;
}

.dp-gdpr-rights dt {
    font-weight: 600;
    color: var(--navy);
    margin-top: 16px;
    margin-bottom: 4px;
}

.dp-gdpr-rights dd {
    margin: 0 0 12px 0;
    color: var(--gray-dark);
    padding-left: 16px;
    border-left: 2px solid var(--gold);
}

/* ============================================================
   LOGIN STRÁNKA
   ============================================================ */
.dp-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.dp-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.dp-login-logo {
    display: block;
    width: 160px;
    margin: 0 auto 32px;
}

.dp-login-box h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.dp-login-field {
    margin-bottom: 16px;
}

.dp-login-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.dp-login-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

.dp-login-field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.dp-login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-dark);
    cursor: pointer;
    user-select: none;
}

.dp-login-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    flex: 0 0 auto;
    accent-color: var(--gold);
}

.dp-login-remember span {
    line-height: 1.2;
    white-space: nowrap;
}

.dp-login-submit {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
}

.dp-login-links {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.dp-login-links a {
    color: var(--gray-dark);
}

.dp-login-links a:hover {
    color: var(--gold);
}

/* ============================================================
   STRÁNKOVANIE
   ============================================================ */
.dp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.dp-pagination a,
.dp-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
}

.dp-pagination a {
    background: var(--gray-light);
    color: var(--navy);
}

.dp-pagination a:hover {
    background: var(--gold);
    color: var(--navy);
}

.dp-pagination span.current {
    background: var(--navy);
    color: var(--gold);
}

/* ============================================================
   SOCIAL PROOF — Google recenzie (statické)
   ============================================================ */
.dp-reviews {
    margin-top: 56px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.dp-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dp-reviews-score {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

.dp-reviews-stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
}

.dp-reviews-source {
    font-size: 14px;
    color: var(--gray-dark);
}

.dp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dp-review {
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

.dp-review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.dp-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 14px;
    font-style: italic;
}

.dp-review-author {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 600;
}

/* ============================================================
   FAQ — Accordion
   ============================================================ */
.dp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.dp-faq-item {
    border-bottom: 1px solid var(--border);
}

.dp-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.dp-faq-question {
    width: 100%;
    padding: 20px 48px 20px 0;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

/* Override Astra default button hover (zelené pozadie z parent témy).
   Držíme background transparent vo všetkých stavoch; zmena je len vo farbe textu. */
.dp-faq-question:hover,
.dp-faq-question:focus,
.dp-faq-question:focus-visible,
.dp-faq-question:active {
    color: var(--gold);
    background: transparent;
    outline: none;
    box-shadow: none;
}

.dp-faq-question::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
    line-height: 1;
}

.dp-faq-item.is-open .dp-faq-question::after {
    content: '−';
}

.dp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.7;
}

.dp-faq-item.is-open .dp-faq-answer {
    max-height: 400px;
    padding: 0 16px 20px 0;
}

/* ============================================================
   SPODNÝ TAB BAR — mobile navigácia
   ============================================================ */
.dp-tabbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
}

.dp-tabbar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.dp-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    text-align: center;
    line-height: 1.1;
}

.dp-tab svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-tab:hover,
.dp-tab.is-active {
    color: var(--gold);
}

.dp-tab.is-active {
    background: rgba(245, 166, 35, 0.08);
}

/* ============================================================
   UTILITY
   ============================================================ */
.dp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media (max-width: 991px) {
    .dp-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dp-where-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dp-pickup-grid {
        grid-template-columns: 80px 1fr;
        gap: 24px;
    }

    .dp-pickup-icon {
        width: 72px;
        height: 72px;
    }

    .dp-pickup-icon svg {
        width: 32px;
        height: 32px;
    }

    .dp-pickup h2 {
        font-size: 28px;
    }

    .dp-where-col h2 {
        font-size: 28px;
    }

    .dp-sort-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .dp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* .dp-blog-grid — desktop má už 2 stĺpce, na tablete necháme rovnako */

    .dp-hero h1 {
        font-size: 40px;
    }

    .dp-section-header h2 {
        font-size: 32px;
    }
}

/* Nav → Tab Bar switch už od tabletov (od ~1100px sa desktop menu
   prestáva vmestiť a slová ako "OTVÁRACIE HODINY" by sa zalamovali cez logo). */
@media (max-width: 1100px) {
    .dp-nav-menu {
        display: none;
    }

    .dp-tabbar {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 767px) {
    .dp-section {
        padding: 64px 0;
    }

    .dp-hero {
        padding: 100px 20px 72px;
        min-height: 380px;
    }

    .dp-hero h1 {
        font-size: 32px;
    }

    .dp-hero p {
        font-size: 17px;
    }

    .dp-section-header h2 {
        font-size: 28px;
    }

    .dp-sort-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dp-sort-card {
        aspect-ratio: 16 / 10;
    }

    .dp-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dp-pickup-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
    }

    .dp-pickup-icon {
        margin: 0;
    }

    .dp-map-link {
        position: static;
        display: flex;
        margin: 16px auto;
        width: fit-content;
    }

    .dp-newsletter-input-group {
        flex-direction: column;
    }

    .dp-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dp-blog-grid {
        grid-template-columns: 1fr;
    }

    .dp-about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dp-age-gate-buttons {
        flex-direction: column;
    }

    .dp-age-gate-content {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .dp-reviews {
        padding: 24px;
    }

    .dp-single h1 {
        font-size: 30px;
    }

    .dp-author-box {
        flex-direction: column;
        text-align: center;
    }

    .dp-map {
        height: 300px;
    }
}
