:root {
  --black: #020617;
  --dark-blue: #071b3a;
  --blue: #38bdf8;
  --blue-dark: #0284c7;
  --text-blue: #7dd3fc;
  --text-light: #bae6fd;
  --white-blue: #e0f2fe;
  --card-bg: rgba(8, 28, 60, 0.88);
  --border-blue: rgba(125, 211, 252, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(2, 132, 199, 0.18), transparent 30%),
    linear-gradient(135deg, var(--black), var(--dark-blue), #000814);
  color: var(--text-blue);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.navbar {
  background: rgba(2, 6, 23, 0.92);
  border-bottom: 1px solid var(--border-blue);
  backdrop-filter: blur(12px);
}

.navbar-brand,
.nav-link {
  color: var(--text-blue) !important;
}

.navbar-brand {
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 600;
}

.nav-link:hover {
  color: var(--white-blue) !important;
}

.custom-toggler {
  border: 1px solid var(--border-blue);
  background-color: var(--blue);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.page-top {
  padding-top: 88px;
  min-height: calc(100vh - 80px);
}

.badge-custom {
  display: inline-block;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  padding: 9px 16px;
  margin-bottom: 24px;
  background: rgba(56, 189, 248, 0.08);
  font-weight: 700;
}

.hero h1,
.section-head h1,
.contact-box h1 {
  color: var(--white-blue);
  font-size: clamp(2.2rem, 2vw, 5.3rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px;
}

.section-head h1,
.contact-box h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero p,
.section-head p,
.contact-box p {
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero p {
  max-width: 720px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-main,
.btn-second {
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-main {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #00111f;
  border: none;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.35);
}

.btn-main:hover {
  color: #00111f;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.55);
}

.btn-second {
  color: var(--text-blue);
  border: 1px solid var(--border-blue);
  background: transparent;
}

.btn-second:hover {
  color: var(--white-blue);
  border-color: var(--blue);
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-3px);
}

.section-padding {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
}

.card-custom,
.stat-box,
.price-card,
.contact-box {
  background: var(--card-bg);
  border: 1px solid var(--border-blue);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.card-custom,
.price-card,
.stat-box {
  height: 100%;
  border-radius: 26px;
  padding: 32px;
  transition: 0.25s ease;
}

.card-custom:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 28px 90px rgba(56, 189, 248, 0.16);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  background: rgba(56, 189, 248, 0.12);
  font-weight: 900;
  margin-bottom: 22px;
}

.card-custom h3,
.price-card h3 {
  color: var(--white-blue);
  font-weight: 800;
  margin-bottom: 14px;
}

.card-custom p,
.price-card li,
.stat-box p {
  color: var(--text-light);
  line-height: 1.7;
}

.stat-box h3 {
  color: var(--white-blue);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
}

.price-card.featured {
  border-color: var(--blue);
}

.price {
  color: var(--white-blue);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  margin: 18px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.price-card li {
  margin-bottom: 12px;
}

.price-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 10px;
}

.contact-box {
  border-radius: 32px;
  padding: clamp(28px, 5vw, 52px);
}

.form-control {
  background: rgba(2, 6, 23, 0.76);
  border: 1px solid var(--border-blue);
  color: var(--text-blue);
  border-radius: 16px;
  padding: 14px 16px;
}

.form-control:focus {
  background: rgba(2, 6, 23, 0.95);
  color: var(--text-blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.14);
}

.form-control::placeholder {
  color: rgba(186, 230, 253, 0.65);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-blue);
  background: rgba(0, 0, 0, 0.26);
}

.footer p {
  margin: 0;
  color: var(--text-light);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 130px 0 70px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 115px 0 55px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .card-custom,
  .price-card,
  .stat-box {
    padding: 24px;
  }

  .section-padding {
    padding: 55px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .contact-box {
    border-radius: 24px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }

  .hero h1 {
    max-width: 980px;
  }
}

/* ===== E-SHOP PAJASNETWORK - VŠE V JEDNOM STYLE.CSS ===== */
body.shop-page{background:radial-gradient(circle at top left,rgba(56,189,248,.20),transparent 34%),radial-gradient(circle at bottom right,rgba(2,132,199,.18),transparent 30%),linear-gradient(135deg,#020617,#071b3a,#000814);color:#e0f2fe;font-family:Arial,Helvetica,sans-serif;line-height:1.6;min-height:100vh;overflow-x:hidden;margin:0}
body.shop-page *{box-sizing:border-box}body.shop-page a{text-decoration:none;color:inherit}.shop-header{padding:22px 7% 70px}.shop-nav{max-width:1240px;margin:0 auto 70px;display:flex;align-items:center;justify-content:space-between;gap:20px;background:rgba(2,6,23,.86);border:1px solid rgba(125,211,252,.28);border-radius:24px;padding:16px 22px;backdrop-filter:blur(12px);box-shadow:0 24px 80px rgba(0,0,0,.45)}.shop-logo{font-size:26px;font-weight:900;color:#fff}.shop-logo span{color:#38bdf8}.shop-links{display:flex;align-items:center;gap:24px;color:#bae6fd;font-weight:800}.shop-links a:hover{color:#38bdf8}.cart-link{border:1px solid rgba(125,211,252,.28);border-radius:999px;padding:9px 14px}#cart-count{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;margin-left:5px;border-radius:999px;background:#248bff;color:#00111f;font-size:13px;font-weight:900}.shop-hero{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1.25fr .75fr;align-items:center;gap:40px;min-height:520px}.shop-page .eyebrow{color:#38bdf8;font-weight:900;text-transform:uppercase;letter-spacing:3px;margin-bottom:16px}.shop-page h1,.shop-page h2,.shop-page h3{line-height:1.1;font-weight:900;color:#fff}.shop-page h1{font-size:clamp(44px,7vw,84px);letter-spacing:-3px;max-width:860px}.shop-page h2{font-size:clamp(32px,4vw,54px)}.shop-page h3{font-size:24px}.hero-text{color:#bae6fd;font-size:20px;max-width:700px;margin:26px 0 34px}.hero-actions{display:flex;gap:16px;flex-wrap:wrap}.btn-shop{display:inline-block;border:0;border-radius:999px;padding:15px 28px;background:linear-gradient(135deg,#38bdf8,#248bff);color:#00111f!important;font-weight:900;cursor:pointer;box-shadow:0 0 30px rgba(56,189,248,.35);transition:.25s ease;text-align:center}.btn-shop:hover{transform:translateY(-3px);filter:brightness(1.08)}.btn-outline,.danger,.remove{background:transparent!important;color:#38bdf8!important;border:1px solid rgba(125,211,252,.28);box-shadow:none}.hero-card,.product-card,.cart-box,.order-form{background:linear-gradient(180deg,rgba(8,28,60,.94),rgba(2,6,23,.94));border:1px solid rgba(125,211,252,.28);border-radius:28px;box-shadow:0 24px 80px rgba(0,0,0,.45)}.hero-card{padding:42px;min-height:300px;display:flex;flex-direction:column;justify-content:center}.hero-icon{font-size:58px;margin-bottom:16px}.hero-card p,.hero-card small{color:#bae6fd}.hero-card strong{font-size:44px;color:#38bdf8;margin:8px 0}.shop-section{padding:85px 7%}.section-title{max-width:1240px;margin:0 auto 34px}.center{text-align:center}.product-grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.product-card{padding:30px;transition:.25s ease}.product-card:hover{transform:translateY(-8px);border-color:#38bdf8}.product-card.highlight{background:linear-gradient(180deg,rgba(11,42,87,.98),rgba(2,6,23,.95))}.product-card p{color:#bae6fd;margin-top:12px}.badge{display:inline-block;margin-bottom:18px;padding:7px 13px;border:1px solid rgba(125,211,252,.28);border-radius:999px;background:rgba(56,189,248,.1);color:#38bdf8;font-size:12px;font-weight:900}.price{font-size:34px;font-weight:900;color:#38bdf8;margin:24px 0}.cart-section,.order-section{max-width:1240px;margin:0 auto}.cart-box{padding:28px}.cart-items{display:grid;gap:14px}.cart-item{display:grid;grid-template-columns:1fr 110px 140px 110px;align-items:center;gap:14px;background:rgba(2,6,23,.75);border:1px solid rgba(125,211,252,.28);border-radius:18px;padding:18px}.cart-item p,.empty-cart{color:#bae6fd}.cart-item input{max-width:100px}.cart-item strong,.cart-summary strong{color:#38bdf8;font-size:22px}.cart-summary{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(125,211,252,.28);margin-top:22px;padding-top:22px;color:#fff;font-size:24px;font-weight:900}.danger{margin-top:18px}.order-form{padding:34px;display:grid;gap:14px}.order-form label{color:#38bdf8;font-weight:900}.order-form input,.order-form textarea,.cart-item input{width:100%;background:rgba(2,6,23,.82);border:1px solid rgba(125,211,252,.28);color:#e0f2fe;padding:15px 16px;border-radius:16px;outline:none;font:inherit}.order-form input:focus,.order-form textarea:focus,.cart-item input:focus{border-color:#38bdf8}.order-form input::placeholder,.order-form textarea::placeholder{color:rgba(186,230,253,.68)}.full{width:100%;margin-top:10px}.shop-footer{text-align:center;padding:32px 7%;color:#bae6fd;border-top:1px solid rgba(125,211,252,.28)}@media(max-width:900px){.shop-hero,.product-grid{grid-template-columns:1fr}.shop-nav{align-items:flex-start;flex-direction:column}.shop-links{flex-wrap:wrap}.cart-item{grid-template-columns:1fr}.shop-section{padding:60px 6%}.shop-page h1{letter-spacing:-1px}.shop-header{padding-left:5%;padding-right:5%}}@media(max-width:520px){.shop-links{gap:12px}.shop-links a{font-size:14px}.btn-shop{width:100%}.shop-page h1{font-size:42px}.hero-card,.product-card,.cart-box,.order-form{border-radius:22px;padding:24px}}


/* ===== OPRAVA FORMULÁŘE E-SHOP: DOPRAVA A PLATBA ===== */
.order-form input,
.order-form textarea,
.order-form select,
.cart-item input{
  width:100%;
  background:rgba(2,6,23,.82);
  border:1px solid rgba(125,211,252,.28);
  color:#e0f2fe;
  padding:15px 16px;
  border-radius:16px;
  outline:none;
  font:inherit;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus,
.cart-item input:focus{
  border-color:#38bdf8;
}

.order-form input::placeholder,
.order-form textarea::placeholder{
  color:rgba(186,230,253,.68);
}

.order-form select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  background-image:linear-gradient(45deg,transparent 50%,#38bdf8 50%),linear-gradient(135deg,#38bdf8 50%,transparent 50%);
  background-position:calc(100% - 22px) calc(50% - 3px),calc(100% - 15px) calc(50% - 3px);
  background-size:7px 7px,7px 7px;
  background-repeat:no-repeat;
  padding-right:46px;
}

.order-form select option{
  background:#071b3a;
  color:#ffffff;
}


/* ===== OPRAVA PRODUKTŮ DO MŘÍŽKY ===== */
.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  width: 100%;
  min-height: 520px;
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
