/* =========================================================================
   Perfekt Bike — Hoja de estilos
   Estilo: moderno y minimalista. Colores: blanco, negro y azul de acento.
   ========================================================================= */

/* ---- Variables ---- */
:root {
  --blue: #0057ff;
  --blue-dark: #0042c7;
  --blue-soft: #e8f0ff;
  --black: #0a0a0a;
  --ink: #14151a;
  --muted: #5b6470;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --white: #ffffff;
  --green: #25d366;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.06),
    0 2px 8px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 8px 30px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 10, 10, 0.12);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.4em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    box-shadow 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 87, 255, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 87, 255, 0.34);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: #25262c;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 17px;
  padding: 17px 34px;
}

.btn-block {
  width: 100%;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.site-nav a:hover {
  background: var(--bg-soft);
}

.site-nav a.active {
  color: var(--blue);
}

.site-nav a.nav-cta {
  background: var(--blue);
  color: #fff;
  margin-left: 6px;
}

.site-nav a.nav-cta:hover {
  background: var(--blue-dark);
}

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #0b1c3a;
  background-image: linear-gradient(
      105deg,
      rgba(6, 14, 30, 0.86) 0%,
      rgba(6, 14, 30, 0.62) 45%,
      rgba(6, 14, 30, 0.25) 100%
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-inner {
  padding: 96px 0;
  max-width: 680px;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: #7fa8ff;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges svg {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---- Page banner (encabezado de páginas internas) ---- */
.page-banner {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin-bottom: 12px;
}

.page-banner p {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Feature row (home) ---- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.feature .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}

.feature .icon svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 19px;
}

.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* ---- Cards (servicios / productos) ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d7dbe3;
}

.card.featured {
  border-color: var(--blue);
  box-shadow: 0 14px 40px rgba(0, 87, 255, 0.14);
}

.card-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.card-head h3 {
  font-size: 24px;
  margin: 0;
}

.price {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.price small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

.card-desc {
  color: var(--muted);
  margin: 8px 0 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230057ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.card-note {
  font-size: 14px;
  color: var(--muted);
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 0 0 24px;
}

.card-foot {
  margin-top: auto;
}

/* Producto */
.product-card {
  padding: 0;
  overflow: hidden;
}

.product-media {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

/* Estado vacío */
.empty-state {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 28px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.empty-state .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
}

.empty-state .icon svg {
  width: 32px;
  height: 32px;
}

.empty-state h3 {
  font-size: 24px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--black);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---- Agendar / Calendly ---- */
.calendly-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.calendly-embed {
  min-height: 680px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.calendly-placeholder {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 48px 24px;
  border: 2px dashed var(--blue);
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.calendly-placeholder .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: var(--blue);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.calendly-placeholder .icon svg {
  width: 32px;
  height: 32px;
}

.calendly-placeholder h3 {
  font-size: 22px;
}

.calendly-placeholder code {
  font-size: 15px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 600;
}

.calendly-placeholder .hint {
  color: var(--muted);
  font-size: 14px;
  max-width: 460px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer p {
  font-size: 15px;
  margin: 0 0 8px;
}

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s var(--ease);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* Botón de Instagram (footer) */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
  font-size: 14px;
  color: #fff !important;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease),
    background 0.18s var(--ease);
}

.social-btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

/* ---- WhatsApp flotante ---- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: wa-pop 0.4s var(--ease) both;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: wa-ring 2.4s ease-out infinite;
}

@keyframes wa-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* =========================================================================
   Panel de administración
   ========================================================================= */
.admin-body {
  background: var(--bg-soft);
  min-height: 100vh;
}

.admin-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.admin-topbar .brand-logo {
  height: 40px;
}

.admin-title {
  font-weight: 800;
  font-size: 18px;
}

.admin-title small {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
}

/* Login */
.login-card {
  max-width: 420px;
  margin: 8vh auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  text-align: center;
}

.login-card .lock {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
}

.login-card .lock svg {
  width: 30px;
  height: 30px;
}

/* Forms */
.field {
  text-align: left;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field .help {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.form-error {
  color: #d12b2b;
  font-size: 14px;
  margin-top: 10px;
  min-height: 18px;
}

/* Tabs */
.admin-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 28px;
}

.admin-tabs button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.admin-tabs button.active {
  background: var(--blue);
  color: #fff;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.panel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 24px;
}

.panel-card h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.panel-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Lista de items en admin */
.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-item .meta strong {
  font-size: 16px;
}

.admin-item .meta span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.admin-item .meta .pill {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 3px 10px;
  border-radius: 999px;
}

.item-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.btn-icon {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease),
    color 0.15s var(--ease);
}

.btn-icon:hover {
  border-color: var(--ink);
}

.btn-icon.danger:hover {
  border-color: #d12b2b;
  color: #d12b2b;
  background: #fdeeee;
}

.admin-empty {
  color: var(--muted);
  font-size: 14px;
  padding: 18px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 90;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.admin-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 860px) {
  .features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 14px 20px 22px;
    transform: translateY(-130%);
    transition: transform 0.3s var(--ease);
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .site-nav a.nav-cta {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-band {
    padding: 40px 24px;
  }

  .row-2 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 26px;
  }

  .admin-item {
    flex-direction: column;
  }

  .item-actions {
    width: 100%;
  }

  .item-actions .btn-icon {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 18px;
  }
  .card-head {
    flex-direction: column;
    gap: 4px;
  }
  .price {
    align-self: flex-start;
  }
  .price small {
    text-align: left;
  }
}
