/* ========================================
   Medený Obchod – Premium CSS
   Copper & Dark Industrial theme
   ======================================== */

:root {
    --copper:       #c47a3a;
    --copper-dark:  #a5622a;
    --copper-light: #e0a060;
    --copper-pale:  #f5e8d8;
    --dark:         #1a1208;
    --dark-mid:     #2e1f0e;
    --dark-card:    #231708;
    --text:         #1a1208;
    --text-mid:     #5a4030;
    --text-light:   #8a7060;
    --bg:           #faf7f3;
    --bg-alt:       #f2ede5;
    --white:        #ffffff;
    --border:       rgba(196,122,58,0.15);
    --shadow:       0 4px 24px rgba(26,18,8,0.10);
    --shadow-hover: 0 12px 40px rgba(26,18,8,0.18);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;

    --radius:    12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-dark); }

/* ---- Layout ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 88px 0; }

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,18,8,0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.navbar.scrolled {
    background: rgba(26,18,8,0.95);
    backdrop-filter: blur(12px);
    border-color: rgba(196,122,58,0.2);
}
.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.logo-icon {
    color: var(--copper);
    font-size: 1.4rem;
    line-height: 1;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(196,122,58,0.15); }
.nav-links a.nav-cta {
    color: var(--white);
    background: var(--copper);
    padding: 8px 20px;
}
.nav-links a.nav-cta:hover { background: var(--copper-dark); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a1208 0%, #2e1f0e 40%, #6b3a18 75%, #c47a3a 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,122,58,0.25) 0%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    background: rgba(196,122,58,0.2);
    border: 1px solid rgba(196,122,58,0.4);
    color: var(--copper-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title span {
    color: var(--copper-light);
}
.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.6s ease both;
}
.scroll-arrow {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--copper);
    color: var(--white);
}
.btn-primary:hover { background: var(--copper-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-card {
    display: inline-block;
    color: var(--copper);
    border: 1.5px solid var(--copper);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
}
.btn-card:hover { background: var(--copper); color: var(--white); }
.btn-primary-card {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.btn-primary-card:hover { background: var(--copper-dark); color: var(--white); transform: translateY(-1px); }
.btn-secondary-card {
    display: inline-block;
    background: var(--bg);
    color: var(--text);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.btn-secondary-card:hover { background: var(--bg-alt); color: var(--text); }
.btn-submit {
    width: 100%;
    background: var(--copper);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-submit:hover { background: var(--copper-dark); transform: translateY(-1px); }

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--dark);
    padding: 24px;
}
.trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 36px;
    text-align: center;
}
.trust-item strong { color: var(--copper-light); font-size: 1.05rem; font-weight: 600; }
.trust-item span { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 2px; }
.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(196,122,58,0.25);
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-label {
    display: inline-block;
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.section-desc {
    margin-top: 14px;
    color: var(--text-mid);
    font-size: 1.05rem;
}

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.service-card.featured {
    border-color: var(--copper);
    box-shadow: 0 4px 24px rgba(196,122,58,0.15);
}
.service-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--bg-alt);
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,18,8,0.04) 100%);
}
.service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.service-card-btn-row {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.service-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}
.service-body p {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.6;
}
.service-note {
    font-size: 0.82rem;
    color: #b05020;
    background: #fff3ed;
    border-left: 3px solid #c47a3a;
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
}
.price-preview {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-preview span { font-size: 1rem; color: var(--text-mid); }
.price-preview strong { font-size: 1.5rem; color: var(--copper); font-weight: 700; }
.price-preview small { color: var(--text-light); font-size: 0.8rem; }
.drot-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.service-card-btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: auto; }

/* ---- About Section ---- */
.about-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
    padding: 88px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-text .section-label { color: var(--copper-light); }
.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-text p { color: rgba(255,255,255,0.65); margin-bottom: 14px; font-size: 0.96rem; }
.about-contact { margin-top: 24px; }
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(196,122,58,0.15);
    border: 1px solid rgba(196,122,58,0.3);
    padding: 16px 24px;
    border-radius: var(--radius);
    color: var(--white);
    transition: all var(--transition);
}
.contact-link:hover { background: rgba(196,122,58,0.25); color: var(--white); }
.contact-icon { font-size: 1.5rem; }
.contact-link small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.contact-link strong { font-size: 1.15rem; color: var(--copper-light); }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(196,122,58,0.1);
}
.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.feature-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.feature-item p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

/* ---- Contact Section ---- */
.contact-section { background: var(--bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(196,122,58,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-icon { font-size: 1.2rem; line-height: 1.4; flex-shrink: 0; }
.info-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 4px; }
.info-row p { color: var(--text); font-size: 0.93rem; margin: 0; }
.info-row a { color: var(--text); font-weight: 500; }
.info-row a:hover { color: var(--copper); }

/* ---- Contact Form ---- */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e0d4c0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(196,122,58,0.12);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bdb0a0; }
.form-group textarea { resize: vertical; min-height: 110px; }
.drot-extra {
    background: var(--copper-pale);
    border: 1px solid rgba(196,122,58,0.3);
    border-radius: var(--radius);
    padding: 20px;
}
.drot-extra .form-row { grid-template-columns: repeat(3, 1fr); }

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(196,122,58,0.15);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 6px; }
.footer-ico { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer-links-col a:hover { color: var(--copper-light); }
.footer-contact-col p { margin-bottom: 8px; font-size: 0.9rem; }
.footer-contact-col a { color: rgba(255,255,255,0.75); }
.footer-contact-col a:hover { color: var(--copper-light); }
.footer-bottom {
    text-align: center;
    padding: 24px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-legal-links {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}
.footer-legal-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--copper-light); }

/* ---- Animations ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ---- Page-specific: Cennik & Predaj ---- */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 70%, #6b3a18 100%);
    padding: 100px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
}
.page-header p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 1rem; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 24px;
    transition: color var(--transition);
}
.back-link:hover { color: var(--white); }

/* Cenník tabuľka */
.cennik-section { padding: 64px 0; }
.cennik-info {
    background: var(--copper-pale);
    border: 1px solid rgba(196,122,58,0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    font-size: 0.92rem;
    color: var(--text-mid);
}
.cennik-info strong { color: var(--copper-dark); }
.cennik-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.cennik-table {
    width: 100%;
    border-collapse: collapse;
}
.cennik-table th {
    background: var(--dark);
    color: var(--white);
    padding: 18px 24px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cennik-table th:not(:first-child) { text-align: right; }
.cennik-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f0e8e0;
    font-size: 0.95rem;
    color: var(--text);
}
.cennik-table td:not(:first-child) { text-align: right; }
.cennik-table tr:last-child td { border-bottom: none; }
.cennik-table tr:nth-child(even) td { background: #fdf9f5; }
.cennik-table tr:hover td { background: var(--copper-pale); }
.price-cell {
    font-weight: 700;
    color: var(--copper-dark);
    font-size: 1.05rem;
}
.cennik-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fff8f0;
    border-radius: var(--radius);
    font-size: 0.87rem;
    color: var(--text-mid);
    border-left: 3px solid var(--copper);
}
.cennik-images-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.cennik-img-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
}
.cennik-img-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 16px;
    background: var(--bg-alt);
}
.cennik-img-card p {
    padding: 12px;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* Predaj spotrebičov */
.predaj-section { padding: 64px 0; }
.predaj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.predaj-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.predaj-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.predaj-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 24px;
    background: var(--bg-alt);
}
.predaj-card-body { padding: 28px; }
.predaj-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.predaj-card-body .brand-badge {
    display: inline-block;
    background: var(--copper-pale);
    color: var(--copper-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.predaj-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 4px;
}
.predaj-price-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.predaj-card-body a.btn-primary {
    display: block;
    text-align: center;
}
.predaj-note-box {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    color: rgba(255,255,255,0.75);
}
.predaj-note-box strong { color: var(--copper-light); font-size: 1.1rem; display: block; margin-bottom: 8px; }

/* GDPR / VOP pages */
.legal-section { padding: 64px 0; }
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.legal-content h2 {
    font-family: var(--font-display);
    color: var(--copper-dark);
    font-size: 1.15rem;
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.7; margin-bottom: 12px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-grid .service-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { order: 2; }
    .predaj-grid { grid-template-columns: 1fr; }
    .predaj-card img { height: 240px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(20,12,4,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
        border-bottom: 1px solid rgba(196,122,58,0.2);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 14px 16px; border-radius: 8px; }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid .service-card:last-child { grid-column: auto; max-width: none; margin: 0; }

    .trust-bar-inner { gap: 0; }
    .trust-divider { display: none; }
    .trust-item { width: 50%; padding: 12px 16px; }

    .form-row { grid-template-columns: 1fr; }
    .drot-extra .form-row { grid-template-columns: 1fr; }

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

    .section { padding: 64px 0; }
    .about-section { padding: 64px 0; }

    .contact-form-wrap { padding: 24px; }
    .info-card { padding: 24px; }
    .legal-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .trust-item { width: 100%; }
    .predaj-price { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════════════════════
   NOVÉ PRVKY v2 – Reading Progress · Floating CTA · Cookie · Maps
   ══════════════════════════════════════════════════════════════ */

/* ── Reading progress bar ───────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--copper-dark, #a5622a), var(--copper-light, #d4935c));
  z-index: 1200;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Floating wrapper ───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ── Back-to-top ────────────────────────────────────────────── */
.back-top-btn {
  width: 44px; height: 44px;
  background: rgba(26,18,8,.88);
  border: 1.5px solid rgba(196,122,58,.45);
  color: #c47a3a;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s, border-color .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.back-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top-btn:hover {
  background: var(--copper, #c47a3a);
  border-color: var(--copper, #c47a3a);
  color: #fff;
}

/* ── Floating phone button ──────────────────────────────────── */
.float-phone-btn {
  width: 56px; height: 56px;
  background: var(--copper, #c47a3a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(196,122,58,.55);
  transition: transform .25s, box-shadow .25s, background .2s;
  animation: phonePulse 3s ease-in-out infinite;
}
.float-phone-btn:hover {
  background: var(--copper-dark, #a5622a);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(196,122,58,.75);
  animation: none;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(196,122,58,.55); }
  50%       { box-shadow: 0 4px 32px rgba(196,122,58,.8),
                           0 0 0 9px rgba(196,122,58,.1); }
}

/* ── Cookie consent bar ─────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(22,15,5,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(196,122,58,.22);
  padding: 16px 24px;
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-text {
  color: rgba(255,255,255,.7);
  font-size: .84rem;
  line-height: 1.5;
}
.cookie-text a { color: #c47a3a; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-ok {
  background: var(--copper, #c47a3a);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .83rem;
  cursor: pointer;
  transition: background .2s;
}
.cookie-ok:hover { background: var(--copper-dark, #a5622a); }
.cookie-dismiss {
  background: transparent;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.18);
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .83rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.cookie-dismiss:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── Google Maps wrapper ─────────────────────────────────────── */
.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,.08));
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; }

/* ── Success toast s číslom objednávky ─────────────────────── */
.order-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  background: linear-gradient(135deg, #1a2e1c, #1e4021);
  color: #fff;
  padding: 18px 28px 20px;
  border-radius: 14px;
  z-index: 9999;
  text-align: center;
  max-width: min(520px, 92vw);
  width: max-content;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  border: 1px solid #2e6432;
  opacity: 0;
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.order-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.order-toast .toast-icon  { font-size: 1.6rem; line-height: 1; }
.order-toast .toast-title { font-size: 1rem; margin: 6px 0 2px; font-weight: 600; }
.order-toast .toast-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #7fcf8a;
  font-family: Georgia, serif;
  letter-spacing: .06em;
  display: block;
  margin: 4px 0 6px;
}
.order-toast .toast-sub  { font-size: .8rem; color: rgba(255,255,255,.55); }
.order-toast .toast-close {
  display: block;
  margin: 12px auto 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .8rem;
  cursor: pointer;
  transition: background .2s;
}
.order-toast .toast-close:hover { background: rgba(255,255,255,.2); }

/* ── Hamburger → X animácia ─────────────────────────────────── */
.nav-toggle span { transition: transform .3s, opacity .3s; display: block; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Submit button – loading stav ───────────────────────────── */
.btn-submit.sending {
  opacity: .65;
  cursor: wait;
  pointer-events: none;
}
.btn-submit.sending::after { content: ' ⏳'; }

/* ── Mobile úpravy ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-bar { padding: 14px 16px; }
  .cookie-actions { width: 100%; }
  .cookie-ok, .cookie-dismiss { flex: 1; }

  .floating-cta { bottom: 18px; right: 14px; }
  .float-phone-btn { width: 50px; height: 50px; }
  .back-top-btn { width: 40px; height: 40px; font-size: 1rem; }

  .order-toast { padding: 16px 18px 18px; }
  .order-toast .toast-num { font-size: 1.45rem; }

  .map-wrap { margin-top: 28px; }
  .map-wrap iframe { height: 260px !important; }
}
