/*
Theme Name: Auto Pospíšil
Theme URI: https://www.autpospisil.cz/
Author: Martin Kalod
Description: Kompletní šablona pro autoservis, pneuservis, autoelektriku a mytí. Vytvořeno pro Auto Pospíšil s láskou k motorismu🚗💨:-D
Version: 1.2
Text Domain: auto-pospisil
*/

:root {
  --red: #dc2e25; --red-dark: #8b1a16;
  --bg: #111315; --bg2: #1a1d20; --bg3: #22262b;
  --text: #e8eaed; --muted: #9aa0a8; --border: #2a2d32;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

/* APLIKACE NOVÝCH FONTŮ */
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.nav-logo,
.hero-badge, .section-label,
.btn-primary, .btn-outline, .btn-booking, .btn-eshop, .nav-cta, .btn-storage,
.bento-num, .bento-title, .hp-card-title, .kamera-title {
  font-family: 'Montserrat', sans-serif;
}


/* NAV */
nav { background: rgba(17,19,21,0.97); border-bottom: 1px solid var(--border); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo { font-size: 1.2rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-cta { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; border: none; padding: .5rem 1.4rem; border-radius: 6px; font-size: .9rem; cursor: pointer; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav-cta:hover { opacity: .9; }

/* NAV STATUS */
.nav-status { display: inline-flex; align-items: center; gap: .5rem; padding: .3rem .9rem; border-radius: 10px; white-space: nowrap; line-height: 1.2; font-family: 'Inter', sans-serif; }
.nav-status.open { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); }
.nav-status.closed { background: rgba(220,46,37,0.08); border: 1px solid rgba(220,46,37,0.2); }
.nav-status .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
.nav-status.open .dot { background: #4ade80; animation: pulse-dot 2s infinite; }
.nav-status.closed .dot { background: #f87171; }
.nav-status-inner { display: flex; flex-direction: column; }
#nav-status-text { font-size: .78rem; font-weight: 700; }
.nav-status.open #nav-status-text { color: #4ade80; }
.nav-status.closed #nav-status-text { color: #f87171; }
#nav-status-sub { font-size: .68rem; font-weight: 400; color: var(--muted); }

/* HERO */
.hero { padding: 80px 5% 70px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; text-align: center; display: flex; flex-direction: column; align-items: center; background: #0a0c0e; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%) brightness(0.22); z-index: 0; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,12,14,0.72) 0%, rgba(26,6,5,0.55) 50%, rgba(17,19,21,0.65) 100%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: -80px; right: -80px; z-index: 1; width: 500px; height: 500px; background: radial-gradient(circle, rgba(220,46,37,0.18) 0%, transparent 70%); pointer-events: none; }
.hero > *:not(.hero-bg) { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(220,46,37,0.15); border: 1px solid rgba(220,46,37,0.3); color: var(--red); font-size: .8rem; font-weight: 700; padding: .3rem .9rem; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.05; margin-bottom: .2rem; text-transform: uppercase; letter-spacing: -.02em; }
.hero h1 span { background: linear-gradient(90deg, var(--red), #ff6b64); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-byline { font-size: .95rem; color: var(--muted); font-weight: 600; margin-top: .1rem; margin-bottom: 1.8rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-byline span { color: var(--red); font-weight: 600; }
.hero p.hero-desc { color: var(--muted); font-size: 1.15rem; max-width: 580px; margin-bottom: 2rem; line-height: 1.7; text-align: center; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; padding: .75rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 4px 20px rgba(220,46,37,0.35); transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(220,46,37,0.5); }
.btn-outline { border: 1px solid var(--border); color: var(--text); padding: .75rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.hero-nav-links { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }
.hero-nav-link { display: inline-flex; align-items: center; gap: .45rem; color: rgba(232,234,237,0.55); font-size: .82rem; font-weight: 500; text-decoration: none; padding: .4rem .95rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; background: rgba(255,255,255,0.04); backdrop-filter: blur(6px); transition: color .2s, border-color .2s, background .2s; letter-spacing: .03em; }
.hero-nav-link.active-link { color: #fff; border-color: rgba(220,46,37,0.6); background: rgba(220,46,37,0.12); }
.hero-nav-link:hover { color: #fff; border-color: rgba(220,46,37,0.5); background: rgba(220,46,37,0.08); }
.hero-nav-link .dot, .hero-nav-link .ndot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: .7; flex-shrink: 0; }

/* SECTIONS */
section { padding: 64px 5%; }
.section-label { color: var(--red); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.section-title { font-size: 1.9rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.8rem; max-width: 560px; line-height: 1.6; }

/* INFO STRIP (Index) */
.info-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 5%; }
.info-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.info-item { display: flex; align-items: center; gap: .9rem; }
.info-icon { font-size: 1.7rem; flex-shrink: 0; }
.info-label { font-size: .72rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .15rem; font-family: 'Montserrat', sans-serif; }
.info-value { font-size: .98rem; font-weight: 600; color: var(--text); }
.info-sub { font-size: .8rem; color: var(--muted); }
.info-value a:hover {color: var(--red) !important;text-decoration: underline !important;}

/* HP CARDS (Index) */
.hp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.hp-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; padding: 0; display: flex; flex-direction: column; transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden; text-decoration: none; color: inherit; }
.hp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), #ff6b64, transparent); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.hp-card:hover { border-color: rgba(220,46,37,0.4); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.hp-card:hover::before { transform: scaleX(1); }
.hp-card-head { display: flex; align-items: center; gap: 1rem; padding: 1.8rem 1.8rem 1.2rem; border-bottom: 1px solid var(--border); }
.hp-card-icon { font-size: 2.4rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(220,46,37,0.1); border: 1px solid rgba(220,46,37,0.2); border-radius: 14px; flex-shrink: 0; }
.hp-card-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.hp-card-desc { color: var(--muted); font-size: .93rem; line-height: 1.7; flex: 1; padding: 1.2rem 1.8rem; }
.hp-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1.8rem 1.2rem; }
.hp-tag { font-size: .74rem; font-weight: 600; padding: .25rem .7rem; border-radius: 10px; background: rgba(220,46,37,0.08); border: 1px solid rgba(220,46,37,0.18); color: var(--red); }
.hp-card-cta { font-size: .88rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: .4rem; padding: 1rem 1.8rem 1.6rem; font-family: 'Montserrat', sans-serif; }
.hp-card-cta .arr { transition: transform .2s; display: inline-block; }
.hp-card:hover .hp-card-cta .arr { transform: translateX(5px); }

/* CARDS GRID (Autoservis, Pneuservis) */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; position: relative; overflow: hidden; transition: border-color .3s, transform .3s; }
.card:hover { border-color: rgba(220,46,37,0.45); transform: translateY(-3px); }
.card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity .3s; }
.card:hover::after { opacity: 1; }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; font-family: 'Montserrat', sans-serif;}
.card-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* BENTO GRID (Autoelektrika) */
.bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.bento-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.8rem; position: relative; overflow: hidden; transition: border-color .4s, transform .3s; display: flex; flex-direction: column; justify-content: space-between; min-height: 220px; }
.bento-item:nth-child(1) { grid-column: span 2; min-height: 260px; }
.bento-item:nth-child(4) { grid-column: span 2; }
.bento-item:hover { border-color: rgba(220,46,37,0.5); transform: translateY(-3px); }
.bento-item.touched { border-color: rgba(220,46,37,0.5); }
.bento-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity .35s; }
.bento-item:hover::after, .bento-item.touched::after { opacity: 1; }
.bento-item .bento-glow { position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(220,46,37,0.22) 0%, rgba(139,26,22,0.08) 50%, transparent 75%); filter: blur(28px); border-radius: 50%; transition: width .55s cubic-bezier(.22,1,.36,1), height .55s cubic-bezier(.22,1,.36,1), bottom .55s cubic-bezier(.22,1,.36,1), right .55s cubic-bezier(.22,1,.36,1), opacity .4s; pointer-events: none; opacity: .7; }
.bento-item:hover .bento-glow, .bento-item.touched .bento-glow { width: 130%; height: 220px; bottom: -60px; right: -15%; opacity: 1; }
.bento-more { position: absolute; top: 1.2rem; right: 1.4rem; opacity: 0; transform: translateY(-6px); transition: opacity .25s, transform .25s; pointer-events: none; }
.bento-item:hover .bento-more, .bento-item.touched .bento-more { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bento-more-btn { display: inline-flex; align-items: center; gap: .45rem; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-size: .8rem; font-weight: 700; padding: .4rem 1rem; border-radius: 20px; border: none; cursor: pointer; letter-spacing: .03em; box-shadow: 0 2px 12px rgba(220,46,37,0.35); transition: box-shadow .2s, transform .2s; font-family: 'Montserrat', sans-serif;}
.bento-more-btn:hover { box-shadow: 0 4px 20px rgba(220,46,37,0.55); transform: translateY(-1px); }
.bento-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.bento-icon { font-size: 2rem; width: 52px; height: 52px; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.bento-num { font-size: 3.5rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.04); letter-spacing: -.04em; user-select: none; }
.bento-label { font-size: .7rem; font-weight: 700; color: var(--red); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; font-family: 'Montserrat', sans-serif;}
.bento-title { font-size: 1.25rem; font-weight: 800; margin-bottom: .4rem; letter-spacing: -0.01em;}
.bento-desc { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; }
.bento-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; }
.bento-tag { background: var(--bg3); border: 1px solid var(--border); color: var(--muted); font-size: .78rem; padding: .2rem .7rem; border-radius: 20px; transition: border-color .18s, color .18s; }
.bento-item:hover .bento-tag { border-color: rgba(220,46,37,0.25); }

/* MODALS (Autoelektrika) */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; max-width: 580px; width: 100%; max-height: 85vh; overflow-y: auto; transform: translateY(20px) scale(.97); transition: transform .3s cubic-bezier(.22,1,.36,1); position: relative; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-header { padding: 1.8rem 2rem 1.2rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-header-left { display: flex; align-items: center; gap: 1rem; }
.modal-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.modal-title-wrap { display: flex; flex-direction: column; gap: .2rem; }
.modal-label { font-size: .7rem; font-weight: 700; color: var(--red); letter-spacing: .12em; text-transform: uppercase; font-family: 'Montserrat', sans-serif;}
.modal-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em;}
.modal-close { background: var(--bg3); border: 1px solid var(--border); color: var(--muted); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: color .2s, border-color .2s; flex-shrink: 0; }
.modal-close:hover { color: var(--text); border-color: var(--red); }
.modal-body { padding: 1.6rem 2rem 2rem; }
.modal-body p { color: var(--muted); font-size: .95rem; line-height: 1.75; margin-bottom: 1.4rem; }
.modal-section-title { font-size: .72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; margin-top: 1.4rem; font-family: 'Montserrat', sans-serif;}
.modal-list { list-style: none; display: flex; flex-direction: column; }
.modal-list li { font-size: .93rem; color: var(--text); padding: .55rem 0 .55rem 1.2rem; position: relative; border-bottom: 1px solid var(--border); }
.modal-list li:last-child { border-bottom: none; }
.modal-list li::before { content: "›"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.modal-list li span { color: var(--muted); font-size: .83rem; display: block; margin-top: .1rem; }
.modal-note { margin-top: 1.4rem; padding: 1rem 1.2rem; background: rgba(220,46,37,0.07); border: 1px solid rgba(220,46,37,0.2); border-radius: 10px; font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* SERVICES & EQUIP LISTS */
.services-bg, .equip-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid, .equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-group h4, .equip-group h4 { color: var(--red); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; padding-bottom: .4rem; border-bottom: 1px solid rgba(220,46,37,0.25); font-family: 'Montserrat', sans-serif;}
.service-group ul, .equip-group ul { list-style: none; }
.service-group ul li, .equip-group ul li { color: var(--text); font-size: .95rem; padding: .45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: .6rem; }
.service-group ul li::before, .equip-group ul li::before { content: "●"; color: var(--red); font-size: .5rem; margin-top: .55rem; flex-shrink: 0; }

/* HIGHLIGHT BOX */
.highlight-box { background: linear-gradient(135deg, rgba(220,46,37,0.08), rgba(139,26,22,0.05)); border: 1px solid rgba(220,46,37,0.2); border-radius: 12px; padding: 2rem 2.2rem; margin-top: 2.5rem; }
.highlight-box h3 { font-size: 1.2rem; margin-bottom: .5rem; font-family: 'Montserrat', sans-serif;}
.highlight-box p { color: var(--muted); font-size: .95rem; line-height: 1.7; }
.tag { display: inline-block; margin-top: 1rem; margin-right: .4rem; background: var(--bg3); border: 1px solid var(--border); color: var(--muted); font-size: .8rem; padding: .3rem .8rem; border-radius: 20px; }

/* PNEUSERVIS EXTRAS */
.info-banner { background: linear-gradient(135deg, rgba(220,46,37,0.08), rgba(139,26,22,0.05)); border: 1px solid rgba(220,46,37,0.2); border-radius: 12px; padding: 1.8rem 2rem; margin-bottom: 2.5rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.info-banner-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.info-banner h3 { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; font-family: 'Montserrat', sans-serif;}
.info-banner p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.season-grid { display: grid; margin-bottom: 2.5rem; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.season-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem; }
.season-card.winter { border-color: rgba(96,165,250,0.25); }
.season-card.summer { border-color: rgba(251,191,36,0.25); }
.season-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: .3rem; font-family: 'Montserrat', sans-serif;}
.season-card.winter h4 { color: #93c5fd; }
.season-card.summer h4 { color: #fcd34d; }
.season-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-top: .4rem; }
.season-badge { display: inline-block; font-size: .75rem; font-weight: 700; padding: .25rem .7rem; border-radius: 10px; margin-bottom: .6rem; font-family: 'Montserrat', sans-serif;}
.season-card.winter .season-badge { background: rgba(96,165,250,0.1); color: #93c5fd; border: 1px solid rgba(96,165,250,0.25); }
.season-card.summer .season-badge { background: rgba(251,191,36,0.1); color: #fcd34d; border: 1px solid rgba(251,191,36,0.25); }

.btn-booking, .btn-eshop { display: inline-flex; align-items: center; gap: .9rem; padding: .85rem 1.4rem; border-radius: 12px; text-decoration: none; min-width: 240px; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; overflow: hidden; }
.btn-booking { background: linear-gradient(135deg, var(--red), var(--red-dark)); border: 1px solid transparent; box-shadow: 0 4px 20px rgba(220,46,37,0.35); }
.btn-booking:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,46,37,0.5); }
.btn-eshop { background: var(--bg3); border: 1px solid var(--border); }
.btn-eshop:hover { transform: translateY(-2px); border-color: rgba(220,46,37,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-icon { font-size: 1.4rem; flex-shrink: 0; }
.btn-inner { display: flex; flex-direction: column; gap: .1rem; flex: 1; text-align: left;}
.btn-label { font-size: .92rem; font-weight: 800; color: #fff; letter-spacing: .02em; font-family: 'Montserrat', sans-serif;}
.btn-eshop .btn-label { color: var(--text); }
.btn-sub { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,0.65); }
.btn-eshop .btn-sub { color: var(--muted); }
.btn-arrow { font-size: 1rem; color: rgba(255,255,255,0.5); flex-shrink: 0; transition: transform .2s; }
.btn-booking:hover .btn-arrow, .btn-eshop:hover .btn-arrow { transform: translateX(3px); color: rgba(255,255,255,0.9); }

.storage-section { padding: 72px 5%; border-top: 1px solid var(--border); }
.storage-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.storage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.storage-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem; transition: border-color .3s, transform .3s; }
.storage-card:hover { border-color: rgba(220,46,37,0.35); transform: translateY(-3px); }
.storage-card--main { background: linear-gradient(135deg, rgba(220,46,37,0.07), var(--bg2)); border-color: rgba(220,46,37,0.25); }
.storage-card-icon { font-size: 2rem; display: block; margin-bottom: .8rem; }
.storage-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; font-family: 'Montserrat', sans-serif;}
.storage-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.storage-notice { display: flex; gap: 1rem; align-items: flex-start; background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.2); border-radius: 12px; padding: 1.1rem 1.4rem; }
.storage-notice span { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.storage-notice p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.btn-storage { display: inline-flex; align-items: center; gap: .9rem; padding: .75rem 1.4rem; border-radius: 12px; text-decoration: none; min-width: 240px; background: linear-gradient(135deg, var(--red-dark), var(--red)); border: 1px solid transparent; box-shadow: 0 4px 20px rgba(220,46,37,0.35); transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.btn-storage:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,46,37,0.5); }
.btn-storage-icon { font-size: 1.4rem; flex-shrink: 0; }
.btn-storage-label { font-size: .92rem; font-weight: 800; color: #fff; letter-spacing: .02em; display: block; font-family: 'Montserrat', sans-serif;}
.btn-storage-sub { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,0.65); display: block; margin-top: .1rem; }

/* MYTI EXTRAS */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.program-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; position: relative; overflow: hidden; transition: border-color .3s, transform .3s; display: flex; flex-direction: column; gap: .8rem; }
.program-card:hover { border-color: rgba(220,46,37,0.45); transform: translateY(-3px); }
.program-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity .3s; }
.program-card:hover::after { opacity: 1; }
.program-card.featured { border-color: rgba(220,46,37,0.3); background: linear-gradient(160deg, rgba(26,29,32,1) 60%, rgba(60,10,8,0.4) 100%); }
.program-card.featured::after { opacity: 1; }
.program-header { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.program-icon { font-size: 1.6rem; }
.program-badge { font-size: .7rem; font-weight: 700; padding: .25rem .7rem; border-radius: 10px; text-transform: uppercase; letter-spacing: .06em; font-family: 'Montserrat', sans-serif;}
.badge-popular { background: rgba(220,46,37,0.15); color: var(--red); border: 1px solid rgba(220,46,37,0.3); }
.badge-premium { background: rgba(251,191,36,0.1); color: #fcd34d; border: 1px solid rgba(251,191,36,0.25); }
.program-name { font-size: 1.15rem; font-weight: 800; font-family: 'Montserrat', sans-serif;}
.program-desc { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.program-includes { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin-top: .2rem; }
.program-includes li { font-size: .88rem; color: var(--text); display: flex; align-items: flex-start; gap: .6rem; }
.program-includes li::before { content: "✓"; color: var(--red); font-weight: 700; font-size: .8rem; margin-top: .15rem; flex-shrink: 0; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; display: flex; flex-direction: column; gap: .9rem; transition: border-color .3s, transform .3s; position: relative; overflow: hidden; }
.price-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity .3s; }
.price-card:hover { border-color: rgba(220,46,37,0.4); transform: translateY(-2px); }
.price-card:hover::after { opacity: 1; }
.price-card.featured { border-color: rgba(220,46,37,0.28); background: linear-gradient(160deg, var(--bg) 60%, rgba(60,10,8,0.35) 100%); }
.price-card.featured::after { opacity: 1; }
.price-header { display: flex; align-items: flex-start; gap: .9rem; }
.price-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.price-name { font-size: 1rem; font-weight: 800; line-height: 1.3; font-family: 'Montserrat', sans-serif;}
.price-duration { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.price-desc { color: var(--muted); font-size: .85rem; line-height: 1.6; }
.price-rows { display: flex; flex-direction: column; gap: .35rem; border-top: 1px solid var(--border); padding-top: .8rem; margin-top: auto; }
.price-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; gap: .5rem; }
.price-row.extra { border-top: 1px dashed var(--border); padding-top: .35rem; }
.price-val { font-size: 1rem; font-weight: 800; color: var(--red); white-space: nowrap; }
.extras-box { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem 2rem; margin-top: .5rem; }
.extras-title { font-size: 1rem; font-weight: 800; margin-bottom: 1.1rem; color: var(--text); font-family: 'Montserrat', sans-serif;}
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .5rem; }
.extra-item { display: flex; justify-content: space-between; align-items: center; padding: .5rem .8rem; background: var(--bg3); border-radius: 8px; font-size: .88rem; gap: .5rem; }
.extra-price { font-weight: 700; color: var(--red); white-space: nowrap; }
.vehicle-legend { display: flex; align-items: center; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.4rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.vehicle-type { flex: 1; min-width: 200px; }
.vehicle-type-header { display: flex; align-items: flex-start; gap: .8rem; }
.vehicle-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.vehicle-label { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; font-family: 'Montserrat', sans-serif;}
.vehicle-examples { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.vehicle-divider { font-size: .8rem; font-weight: 700; color: var(--muted); padding: .3rem .7rem; border: 1px solid var(--border); border-radius: 20px; background: var(--bg3); white-space: nowrap; flex-shrink: 0; }

/* CONTACT & FOOTER */
.contact-section { position: relative; border-top: 1px solid var(--border); overflow: hidden; padding: 64px 5%; min-height: 420px; }
.contact-map-bg { position: absolute; inset: 0; z-index: 0; }
#contact-map .leaflet-tile-pane { filter: grayscale(100%) brightness(0.35) contrast(1.2); }
.contact-map-bg::after { content: ''; position: absolute; inset: 0; z-index: 999; background: linear-gradient(to right, var(--bg) 0%, var(--bg) 38%, rgba(17,19,21,0.82) 55%, rgba(17,19,21,0.1) 72%, transparent 82%, rgba(139,26,22,0.25) 90%, rgba(220,46,37,0.55) 100%); pointer-events: none; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: 3rem; margin-top: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(26,29,32,0.85); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-item-body { display: flex; flex-direction: column; gap: .15rem; }
.contact-item-label { font-size: .75rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-family: 'Montserrat', sans-serif;}
.contact-item-value { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-item-value a { color: var(--text); text-decoration: none; }
.contact-item-value a:hover { color: var(--red); }
.contact-item-sub { font-size: .85rem; color: var(--muted); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem .8rem; margin-top: .2rem; }
.hours-day { font-size: .85rem; color: var(--muted); }
.hours-time { font-size: .85rem; color: var(--text); font-weight: 500; }
.cta-banner { background: linear-gradient(135deg, #1a0605, #1a1d20); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 5%; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: .8rem; }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.cta-bottom { padding: 64px 5%; text-align: center; border-top: 1px solid var(--border); background: linear-gradient(135deg, rgba(26,6,5,0.5), var(--bg)); }
.cta-bottom h2 { font-size: 2rem; font-weight: 800; margin-bottom: .7rem; }
.cta-bottom p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 2rem 5%; color: var(--muted); font-size: .88rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
footer a { color: var(--red); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* FORMS & WP PLUGINS OVERRIDES */
.form-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 5%; }
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-family: 'Montserrat', sans-serif;}
.form-group label span.req { color: var(--red); margin-left: .2rem; }
.form-group input, .form-group select, .form-group textarea, .wpcf7-text, .wpcf7-email, .wpcf7-textarea, .wpcf7-select { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: .97rem; padding: .7rem 1rem; transition: border-color .2s, box-shadow .2s; outline: none; width: 100%; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .wpcf7-text:focus, .wpcf7-textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,46,37,0.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #555a62; }
.form-group select option { background: var(--bg3); }
.form-group textarea, .wpcf7-textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; grid-column: 1 / -1; }
.form-submit-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .6rem; grid-column: 1 / -1; }
.form-submit-row button, .wpcf7-submit { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; border: none; padding: .75rem 2.2rem; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(220,46,37,0.3); transition: transform .2s, box-shadow .2s; font-family: 'Montserrat', sans-serif; }
.form-submit-row button:hover, .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(220,46,37,0.5); }
.form-privacy { font-size: .8rem; color: var(--muted); }
span.wpcf7-not-valid-tip { color: var(--red); font-size: 0.8rem; margin-top: 0.2rem; display: block; }
div.wpcf7-response-output { border-radius: 8px; padding: 0.9rem 1.2rem; margin-top: 1rem; }
div.wpcf7-validation-errors { background: rgba(220,46,37,0.1) !important; border: 1px solid rgba(220,46,37,0.3) !important; color: #f87171 !important; margin: 0; }
div.wpcf7-mail-sent-ok { background: rgba(34,197,94,0.1) !important; border: 1px solid rgba(34,197,94,0.3) !important; color: #4ade80 !important; margin: 0; }

/* MEDIA QUERIES - RESPONZIVITA */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { overflow: hidden; }
  .bento { grid-template-columns: 1fr; }
  .bento-item:nth-child(1), .bento-item:nth-child(4) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-bg::after { background: linear-gradient(to bottom, var(--bg) 40%, rgba(17,19,21,0.6) 100%); }
}
@media (max-width: 640px) {
  .storage-top { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .hero { padding: 60px 5% 50px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .form-divider { grid-column: 1; }
  .form-submit-row { grid-column: 1; }
  #form-msg { grid-column: 1; }
  .season-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .btn-booking, .btn-eshop { min-width: unset; width: 100%; max-width: 340px; }
}

/* KONTAKTNÍ BLOK NA ÚVODNÍ STRANĚ (Nové rozvržení) */
.contact-top-block { padding-bottom: 3rem; }
.contact-top-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 2rem; margin-bottom: 1.8rem; }
.contact-order-btn { display: inline-flex; margin-top: .5rem; }
.contact-map-wrap { width: 100%; height: 320px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.contact-map-wrap iframe { display: block; width: 100%; height: 100%; }

@media (max-width: 900px) {
  .contact-top-inner { grid-template-columns: 1fr; }
  .contact-2x2 { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 240px; }
}

/* Úprava barvy teček Swiper navigace */
.swiper-pagination-bullet { background: var(--text) !important; opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--red) !important; opacity: 1; width: 12px; border-radius: 6px; transition: all 0.3s ease; }
.swiper-pagination-bullet:hover { opacity: 0.7; }


/* ==========================================
   VYČIŠTĚNÉ CSS TŘÍDY PRO VŠECHNY STRÁNKY
   ========================================== */

/* Společné & Univerzální */
.cta-btns-wrap { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-full-width { width: 100%; border: none; cursor: pointer; padding: 12px; }
.btn-outline-white { border-color: rgba(255,255,255,0.2); color: #fff; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-blue { color: #93c5fd; }
.text-yellow { color: #fcd34d; }
.relative-z1 { position: relative; z-index: 1; }

/* Odkazy u kontaktů */
.text-link-base { color: var(--text); text-decoration: none; }
.text-link-muted { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.text-link-red { color: var(--red); text-decoration: none; }

/* Komponenty hlavičky (Dovolená) */
.vacation-modal-overlay { z-index: 99999; }
.vacation-modal-box { max-width: 550px; text-align: center; border: none; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.vacation-modal-head { background-color: var(--red); padding: 25px; color: #ffffff; border-radius: 12px 12px 0 0; }
.vacation-modal-title { margin: 0; font-size: 1.2rem; font-weight: 800; line-height: 1.4; text-transform: uppercase; font-family: 'Montserrat', sans-serif;}
.vacation-modal-body { padding: 35px; background: var(--bg2); }
.vacation-icon-wrap { font-size: 3.5rem; margin-bottom: 20px; }
.vacation-content-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; white-space: pre-line; }
.vacation-btn { margin-top: 35px; width: 100%; border: none; cursor: pointer; padding: 15px; }
.vacation-top-bar { background-color: var(--red); color: white; text-align: center; padding: 12px 5%; font-weight: bold; position: relative; z-index: 999; border-bottom: 3px solid rgba(0,0,0,0.1); font-size: 0.95rem; font-family: 'Montserrat', sans-serif;}
.vacation-top-bar span { margin-right: 8px; }
.status-vacation { color: var(--red); font-weight: 700; }

/* Úvodní strana (front-page) */
.news-banner { background: linear-gradient(135deg, rgba(220,46,37,0.1), rgba(139,26,22,0.05)); border-bottom: 1px solid var(--border); padding: 30px 5%; text-align: center; }
.news-badge { color: var(--red); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;}
.news-title { margin: 10px 0; font-size: 1.5rem; }
.news-title a { color: var(--text); text-decoration: none; }
.news-excerpt { color: var(--muted); font-size: 1rem; margin-bottom: 15px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-pad-standard { padding: 72px 5%; }
.reviews-section { padding: 80px 5%; background: var(--bg-alt); border-top: 1px solid var(--border); overflow: hidden; }
.reviews-swiper { margin-top: 50px; padding-bottom: 40px; }
.review-card { background: var(--bg2); padding: 30px; border-radius: 15px; border: 1px solid var(--border); height: 100%; display: flex; flex-direction: column; min-height: 220px; }
.review-stars { color: #ffc107; margin-bottom: 10px; font-size: 1.1rem; }
.review-text { font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 15px; flex-grow: 1; }
.review-author { font-weight: 800; color: var(--red); }
.review-source { font-size: 0.8rem; color: var(--muted); }
.reviews-all-btn { display: inline-block; padding: 12px 25px; border: 2px solid var(--red); color: var(--red); border-radius: 50px; text-decoration: none; font-weight: 700; font-family: 'Montserrat', sans-serif;}
.reviews-all-wrap { text-align: center; margin-top: 20px; }
.contact-label-mb { margin-bottom: .4rem; }
.contact-title-small { font-size: 1.5rem; margin-bottom: 1.5rem; }
.iframe-reset { border: 0; }
.form-wrap-custom { max-width: 900px; margin: 0 auto; padding-top: 3rem; border-top: 1px solid var(--border); }

/* Pneuservis (page-pneuservis.php) */
.pneu-info-banner { background: linear-gradient(135deg, rgba(220,46,37,0.08), rgba(139,26,22,0.05)); border: 1px solid rgba(220,46,37,0.2); border-radius: 12px; padding: 1.8rem 2rem; margin-bottom: 2.5rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.pneu-info-icon { font-size: 1.8rem; }
.pneu-info-title { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; font-family: 'Montserrat', sans-serif;}
.pneu-info-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* Mytí a čištění (page-myti.php) */
.myti-order-box { text-align: center; margin-top: 3.5rem; margin-bottom: 1rem; }
.btn-big-order { font-size: 1.25rem; padding: 18px 45px; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(220, 46, 37, 0.25); }
.myti-order-sub { color: var(--muted); font-size: 0.95rem; margin-top: 15px; }

/* 404 Stránka (index.php) */
.error-404-section { padding: 120px 5%; text-align: center; min-height: 60vh; }
.error-404-title { font-size: 3rem; margin-bottom: 20px; font-family: 'Montserrat', sans-serif;}
.error-404-desc { color: var(--muted); font-size: 1.2rem; }
.error-404-btn { display: inline-block; margin-top: 30px; }

/* Kontakt patička - marker */
.leaflet-custom-marker { width: 16px; height: 16px; background: #dc2e25; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px #dc2e25, 0 2px 8px rgba(0,0,0,0.6); }

/* Autokamery a Lightbox (page-autoelektrika.php) */
.kamery-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media(min-width: 900px) { .kamery-grid { grid-template-columns: repeat(2, 1fr); } }
.kamera-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1.5rem; transition: .3s; }
@media(min-width: 500px) { .kamera-card { flex-direction: row; } }
.kamera-card.active-set { border-color: var(--red); box-shadow: 0 10px 30px rgba(220,46,37,0.1); }
.kamera-content { flex: 1; display: flex; flex-direction: column; }
.kamera-sidebar { display: flex; gap: 10px; flex-direction: row; overflow-x: auto; padding-bottom: 5px; }
@media(min-width: 500px) { .kamera-sidebar { flex-direction: column; width: 140px; flex-shrink: 0; overflow-x: visible; padding-bottom: 0; } }
.kamera-header { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1rem; }
.kamera-img { width: 80px; height: 60px; border-radius: 8px; flex-shrink: 0; cursor: zoom-in; background: var(--bg2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: .3s; }
.kamera-img:hover { border-color: var(--red); }
.kamera-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease-in-out; }
.kamera-img-fallback { font-size: 1.8rem; opacity: 0.3; }
.k-gal-group { display: flex; gap: 10px; flex-direction: row; }
@media(min-width: 500px) { .k-gal-group { flex-direction: column; } }
.k-gallery-img { width: 100px; height: 70px; border-radius: 6px; object-fit: cover; cursor: zoom-in; border: 1px solid var(--border); transition: .3s; flex-shrink: 0; }
@media(min-width: 500px) { .k-gallery-img { width: 100%; height: 90px; } }
.k-gallery-img:hover { border-color: var(--red); transform: scale(1.03); }
.kamera-title { font-size: 1.25rem; color: #fff; margin: 0; line-height: 1.3; transition: .3s; padding-top: 5px; }
.kamera-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; }
.kamera-prices { background: var(--bg2); padding: 1.2rem; border-radius: 8px; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.05); }
.k-price-row { display: flex; justify-content: space-between; margin-bottom: 0.6rem; font-size: 0.95rem; }
.k-price-row:last-child { margin-bottom: 0; }
.k-price-row strong { color: #fff; font-size: 1.05rem; text-align: right; transition: 0.3s; }
.kamera-toggle { display: inline-flex; align-items: center; cursor: pointer; gap: 12px; user-select: none; }
.kamera-toggle input { display: none; }
.kamera-toggle-slider { width: 44px; height: 24px; background: var(--bg3); border-radius: 20px; position: relative; transition: .3s; border: 1px solid var(--border); flex-shrink: 0; }
.kamera-toggle-slider::after { content: ''; position: absolute; width: 16px; height: 16px; background: var(--muted); border-radius: 50%; top: 3px; left: 4px; transition: .3s cubic-bezier(0.4, 0.0, 0.2, 1); }
.kamera-toggle input:checked + .kamera-toggle-slider { background: var(--red); border-color: var(--red); }
.kamera-toggle input:checked + .kamera-toggle-slider::after { transform: translateX(18px); background: #fff; }
.kamera-toggle-text { font-size: 0.95rem; color: #fff; font-weight: 500; }
.kamera-msg { color: #fcd34d; font-size: 0.85rem; margin-top: 1rem; line-height: 1.5; padding-left: 10px; border-left: 3px solid #fcd34d; }
.kamera-form-section { background: var(--bg); padding: 2.5rem; border-radius: 16px; border: 1px solid var(--border); margin-top: 3rem; }

.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: #fff; border: none; font-size: 2rem; cursor: pointer; padding: 10px 20px; border-radius: 8px; z-index: 100; transition: .3s; }
.lb-btn:hover { background: var(--red); }
.lb-prev { left: 10px; } .lb-next { right: 10px; }
@media(max-width: 600px) { .lb-btn { padding: 10px 15px; font-size: 1.5rem; } .lb-prev { left: 5px; } .lb-next { right: 5px; } }
.ccs-wrapper { position: relative; width: 100%; }
.ccs-selected { background: var(--bg); border: 1px solid var(--border); padding: 12px 15px; border-radius: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #fff; transition: .3s; }
.ccs-selected:hover { border-color: #888; }
.ccs-selected-content { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.ccs-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; margin-top: 5px; max-height: 300px; overflow-y: auto; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.8); display: none; }
.ccs-dropdown.open { display: block; }
.ccs-option { padding: 12px 15px; display: flex; align-items: center; gap: 15px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05); transition: .2s; }
.ccs-option:hover { background: var(--bg2); }
.ccs-option:last-child { border-bottom: none; }
.ccs-img { width: 50px; height: 35px; border-radius: 4px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.ccs-img-fallback { width: 50px; height: 35px; border-radius: 4px; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--border); }
.ccs-info { display: flex; flex-direction: column; gap: 4px; }
.ccs-name { font-weight: bold; color: #fff; font-size: 0.95rem; }
.ccs-price { color: var(--red); font-size: 0.85rem; font-weight: bold; }

.lightbox-modal { background: transparent; box-shadow: none; max-width: 1000px; text-align: center; padding: 0; position: relative; }
.lightbox-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 2.5rem; background: none; border: none; cursor: pointer; z-index: 10; }
.lightbox-img-el { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 15px 50px rgba(0,0,0,0.8); user-select: none; }

/* KAMERA FORMULÁŘ (Contact Form 7 Vylepšený design) */
.kamera-form-section { background: var(--bg); padding: 3rem 0; margin-top: 3rem; border-top: 1px solid var(--border); }
.kf-header-title { margin-top: 0; margin-bottom: 10px; font-size: 1.8rem; color: #fff; font-family: 'Montserrat', sans-serif; letter-spacing: -0.02em; text-align: center; }
.kf-header-desc { color: var(--muted); margin-bottom: 40px; text-align: center; font-size: 0.95rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.kf-layout { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.kf-box { background: var(--bg2); padding: 2.2rem; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.kf-box-title { color: var(--text); font-size: 1.1rem; font-weight: 700; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

.kf-grid { display: grid; gap: 1.2rem; }
.kf-cols-2 { grid-template-columns: 1fr; }
.kf-cols-3 { grid-template-columns: 1fr; }

@media(min-width: 600px) {
    .kf-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .kf-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.kf-mb { margin-bottom: 1.2rem; }
.kf-mt { margin-top: 1.2rem; }

.kf-submit-wrap { text-align: center; margin-top: 1.5rem; }
.kf-note { color: var(--muted); font-size: 0.8rem; margin-top: 12px; }

/* Třídy pro ten hezký rozevírací seznam (Select UI), aby neměl inline styly */
.ccs-ui-container { display: none; margin-bottom: 1.5rem; }
.ccs-ui-label { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
