/* ═══════════════════════════════════════
   MICHAELA ART — Hlavný stylesheet
   Farby: krémová pozadie + ružovo-fialový gradient
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── Premenné ── */
:root {
  --cream:        #FDF6EE;
  --cream-dark:   #F5EDE0;
  --pink:         #E91E8C;
  --pink-light:   #F472B6;
  --pink-pale:    #FCE7F3;
  --violet:       #9C27B0;
  --violet-mid:   #BA68C8;
  --violet-dark:  #6A0080;
  --amber:        #B45309;
  --grad:         linear-gradient(135deg, #E91E8C 0%, #9C27B0 50%, #BA68C8 100%);
  --grad-bg:      linear-gradient(160deg, #FCE7F3 0%, #F3E5F5 40%, #EDE7F6 100%);
  --grad-hero:    linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 30%, #E1BEE7 70%, #D1C4E9 100%);
  --text:         #1A1A2E;
  --text-muted:   #6B6B7B;
  --text-light:   #A0A0B0;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(233,30,140,0.08);
  --shadow-md:    0 4px 20px rgba(233,30,140,0.15);
  --shadow-lg:    0 8px 40px rgba(156,39,176,0.20);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --nav-h:        68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > footer { margin-top: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
select, input, textarea { font-family: var(--font-body); font-size: 15px; }
ul { list-style: none; }

/* ════════════════════════════
   NAVIGÁCIA
   ════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(253,246,238,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233,30,140,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}
.nav-instagram:hover { color: var(--pink); transform: translateY(-1px); }
.btn-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn-cart:hover { opacity: 0.88; transform: translateY(-1px); }
.cart-badge {
  background: var(--white);
  color: var(--pink);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-admin-nav {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-admin-nav:hover {
  background: var(--pink-pale);
  color: var(--pink);
  border-color: rgba(233,30,140,0.2);
}

/* ════════════════════════════
   FLASH SPRÁVY
   ════════════════════════════ */
.flash {
  padding: 12px 2rem;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.flash-ok    { background: #DCFCE7; color: #166534; border-bottom: 1px solid #BBF7D0; }
.flash-error { background: #FEE2E2; color: #991B1B; border-bottom: 1px solid #FECACA; }

/* ════════════════════════════
   HERO
   ════════════════════════════ */
.hero {
  background: var(--grad-hero);
  padding: 4rem max(2.5rem, calc((100% - 1140px) / 2)) 4rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 175px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(186,104,200,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233,30,140,0.10);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233,30,140,0.2);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { position: relative; z-index: 1; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(156,39,176,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(233,30,140,0.15);
}

/* ════════════════════════════
   TLAČIDLÁ
   ════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet-mid);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--violet); color: var(--white); }

/* ════════════════════════════
   FEATURES PÁSIK
   ════════════════════════════ */
.features-bar {
  background: var(--grad);
  padding: 2rem max(2.5rem, calc((100% - 1140px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-item { text-align: center; color: var(--white); }
.feature-icon { font-size: 26px; margin-bottom: 0.4rem; }
.feature-title { font-size: 13px; font-weight: 500; }
.feature-desc { font-size: 12px; opacity: 0.75; margin-top: 2px; }

/* ════════════════════════════
   O MNE
   ════════════════════════════ */
.about-section {
  padding: 5rem 2.5rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-card {
  background: var(--grad-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(233,30,140,0.1);
}
.about-card h4 { font-size: 14px; font-weight: 500; color: var(--violet-dark); margin-bottom: 0.5rem; }
.about-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════
   GALÉRIA
   ════════════════════════════ */
.gallery-section { padding: 4rem max(2.5rem, calc((100% - 1140px) / 2)); background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .section-title { margin-bottom: 0.5rem; }
.gallery-header p { color: var(--text-muted); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid rgba(233,30,140,0.25);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); }
.filter-btn.active { background: var(--grad); border-color: transparent; color: var(--white); box-shadow: var(--shadow-sm); }

/* Vyhľadávanie */
.search-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.search-input {
  padding: 9px 16px;
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  width: 280px;
  max-width: 100%;
  transition: border-color 0.2s;
}
.search-input:focus { outline: none; border-color: var(--pink); }
.btn-search {
  padding: 9px 16px;
  background: var(--grad);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  transition: opacity 0.2s;
}
.btn-search:hover { opacity: 0.85; }
.btn-search-clear {
  padding: 9px 14px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-search-clear:hover { background: var(--cream-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Artwork karta */
.artwork-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(233,30,140,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.artwork-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.artwork-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.artwork-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.artwork-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}
.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.badge-cat-original   { background: rgba(252,231,243,0.92); color: #9D174D; }
.badge-cat-commission { background: rgba(219,234,254,0.92); color: #1E40AF; }
.badge-cat-poster     { background: rgba(220,252,231,0.92); color: #166534; }
.badge-sold           { background: rgba(30,30,30,0.80);    color: #fff; }
.badge-reserved       { background: rgba(180,83,9,0.85);    color: #fff; }

.artwork-info { padding: 1.1rem 1.25rem 1.25rem; }
.artwork-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.artwork-meta { font-size: 12px; color: var(--text-light); margin-bottom: 0.9rem; line-height: 1.5; }
.artwork-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.artwork-price {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.btn-add {
  display: inline-block;
  padding: 8px 16px;
  background: var(--grad);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  -webkit-text-fill-color: var(--white);
}
.btn-add:hover { opacity: 0.85; transform: scale(1.04); }
.btn-add:disabled {
  background: #e5e5ea;
  color: #aaa !important;
  -webkit-text-fill-color: #aaa;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.btn-add:disabled:hover { transform: none; }

/* ════════════════════════════
   KROKY NÁKUPU
   ════════════════════════════ */
.steps-section {
  padding: 5rem max(2.5rem, calc((100% - 1140px) / 2));
  background: var(--grad);
  text-align: center;
}
.steps-section .section-title { color: var(--white); margin-bottom: 0.5rem; }
.steps-section > p { color: rgba(255,255,255,0.8); margin-bottom: 3rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--white);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title { font-size: 16px; font-weight: 500; margin-bottom: 0.5rem; }
.step-desc  { font-size: 14px; opacity: 0.8; line-height: 1.6; }

/* ════════════════════════════
   KONTAKT
   ════════════════════════════ */
.contact-section {
  padding: 4rem 2.5rem;
  background: var(--white);
  max-width: 900px;
  margin: 3rem auto;
  border-radius: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--grad-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(233,30,140,0.1);
}
.contact-card-label { font-size: 11px; color: var(--pink); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-card-val   { font-size: 16px; font-weight: 500; color: var(--text); }

/* ════════════════════════════
   KOŠÍK
   ════════════════════════════ */
.page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-back {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  background: var(--white);
  white-space: nowrap;
}
.page-back:hover { background: var(--cream-dark); color: var(--text); }

.cart-empty { text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.cart-empty-icon { font-size: 72px; margin-bottom: 1rem; }
.cart-empty p { font-size: 18px; margin-bottom: 1.5rem; }

.cart-items-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cart-item {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--grad-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 500; font-size: 15px; }
.cart-item-sub  { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.cart-item-price { font-size: 18px; font-weight: 700; color: var(--pink); white-space: nowrap; }
.btn-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}
.btn-remove:hover { color: #991B1B; background: #FEE2E2; }

.order-box {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.order-box h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.25rem; }
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.order-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid rgba(233,30,140,0.1);
  padding-top: 1rem;
  margin-top: 0.75rem;
}
.order-row.total span:last-child { color: var(--pink); }
.select-shipping {
  padding: 7px 12px;
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
}
.select-shipping:focus { outline: none; border-color: var(--pink); }
.btn-checkout {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 15px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-checkout:hover { opacity: 0.88; transform: translateY(-1px); color: var(--white); }
.cart-note { font-size: 12px; color: var(--text-light); margin-top: 1rem; text-align: center; line-height: 1.6; }

/* ════════════════════════════
   CHECKOUT
   ════════════════════════════ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233,30,140,0.1);
  padding: 2rem;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(233,30,140,0.1);
}
.form-group { margin-bottom: 1.1rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus    { outline: none; border-color: var(--pink); background: var(--white); }
.form-input.input-error { border-color: #EF4444; }
textarea.form-input  { resize: vertical; min-height: 80px; }

.field-error { font-size: 12px; color: #DC2626; margin-top: 4px; }

.payment-info-box {
  background: var(--grad-bg);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}
.payment-info-box h4 { font-size: 14px; font-weight: 500; color: var(--violet-dark); margin-bottom: 0.5rem; }
.iban-display {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233,30,140,0.12);
  margin: 0.5rem 0;
  word-break: break-all;
}
.payment-note { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.checkout-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
.summary-card {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.summary-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1rem; }
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.summary-item span:first-child { flex: 1; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid rgba(233,30,140,0.1);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.summary-total span:last-child { color: var(--pink); }
.btn-submit {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 14px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ════════════════════════════
   ÚSPECH
   ════════════════════════════ */
.success-page {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 540px;
  margin: 0 auto;
}
.success-icon { font-size: 80px; margin-bottom: 1.5rem; }
.success-page h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.success-page p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.5rem; }
.success-iban {
  background: var(--grad-bg);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
}
.success-iban h4 { font-size: 14px; color: var(--violet-dark); margin-bottom: 0.5rem; }
.btn-back-shop {
  display: inline-block;
  margin-top: 1rem;
  padding: 13px 30px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transition: opacity 0.2s;
}
.btn-back-shop:hover { opacity: 0.88; color: var(--white); }

/* ════════════════════════════
   ADMIN (spoločné)
   ════════════════════════════ */
.admin-page  { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem; }
.admin-panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.admin-section-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.75rem; }
.btn-admin-add {
  padding: 9px 20px;
  background: var(--grad);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-admin-add:hover { opacity: 0.88; }

.admin-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-row {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.admin-row:hover { box-shadow: var(--shadow-sm); }
.admin-row-thumb {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: var(--grad-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.admin-row-info { flex: 1; min-width: 0; }
.admin-row-title { font-size: 15px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-row-meta  { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 4px; align-items: center; }
.admin-badge { font-size: 11px; padding: 3px 9px; border-radius: 50px; font-weight: 500; }
.admin-badge-original   { background: var(--pink-pale); color: #9D174D; }
.admin-badge-commission { background: #DBEAFE; color: #1E40AF; }
.admin-badge-poster     { background: #DCFCE7; color: #166534; }
.admin-badge-status-available { background: #DCFCE7; color: #166534; }
.admin-badge-status-reserved  { background: #FEF3C7; color: #92400E; }
.admin-badge-status-sold      { background: #FEE2E2; color: #991B1B; }
.admin-badge-status-archived  { background: #F3F4F6; color: #6B7280; }

/* Inline status select */
.admin-status-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 5px 28px 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  transition: box-shadow 0.15s;
}
.admin-status-select:focus { outline: none; box-shadow: 0 0 0 3px rgba(233,30,140,0.15); }
.admin-status-available { background-color: #DCFCE7; color: #166534; border-color: #BBF7D0; }
.admin-status-reserved  { background-color: #FEF3C7; color: #92400E; border-color: #FDE68A; }
.admin-status-sold      { background-color: #FEE2E2; color: #991B1B; border-color: #FECACA; }
.admin-status-archived  { background-color: #F3F4F6; color: #6B7280; border-color: #E5E7EB; }

/* Archivovaný riadok */
.admin-row-archived { opacity: 0.6; }
.admin-row-archived .admin-row-title { text-decoration: line-through; color: var(--text-muted); }
.admin-row-price { font-size: 16px; font-weight: 700; color: var(--pink); white-space: nowrap; min-width: 70px; text-align: right; }
.admin-row-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.admin-btn-edit {
  padding: 7px 14px; font-size: 13px;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: 8px;
  background: transparent; cursor: pointer; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.admin-btn-edit:hover { background: var(--grad-bg); color: var(--violet-dark); border-color: rgba(233,30,140,0.2); }
.admin-btn-delete {
  padding: 7px 12px; font-size: 13px;
  border: 1.5px solid rgba(0,0,0,0.08); border-radius: 8px;
  background: transparent; cursor: pointer; color: var(--text-light);
  transition: background 0.15s, color 0.15s;
}
.admin-btn-delete:hover { background: #FEE2E2; color: #991B1B; border-color: #FECACA; }

.admin-section-box {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.shipping-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.shipping-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--cream);
  border: 1px solid rgba(233,30,140,0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.shipping-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0; }
.shipping-toggle input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--pink); cursor: pointer; }
.toggle-label { font-size: 13px; color: var(--text-muted); }

.order-card {
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.order-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.75rem;
}
.order-id    { font-size: 15px; font-weight: 700; color: var(--pink); }
.order-date  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.order-total { font-size: 18px; font-weight: 700; color: var(--text); }
.order-customer { font-size: 14px; margin-bottom: 0.75rem; line-height: 1.7; }
.order-items { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.order-item-tag {
  font-size: 12px; background: var(--pink-pale); color: #9D174D;
  padding: 4px 10px; border-radius: 50px; font-weight: 500;
}

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-instagram:hover { color: #fff; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 2.5rem;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 100%;
}
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { padding: 1.25rem 1.5rem; }
}

/* ── Cookie banner ─────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1a1025;
  border-top: 1px solid rgba(233,30,140,0.25);
  padding: 14px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  min-width: 200px;
}
.cookie-link { color: #f472b6; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: var(--grad); color: #fff; }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 960px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 1.5rem; padding: 2.5rem 1.5rem 2rem; }
  .hero-image img, .hero-image-placeholder { aspect-ratio: 16/9; max-height: 260px; }
  .features-bar { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .about-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .about-img-placeholder, .about-img { aspect-ratio: 3/4; max-height: 480px; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .nav { padding: 0 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .gallery-section { padding: 3rem 1.25rem; }
  .page-inner { padding: 2rem 1.25rem; }
  .about-cards { grid-template-columns: 1fr; }
}
/* ── Hamburger ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
/* animácia → X pri otvorení */
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #1a1025;
    border-bottom: 2px solid rgba(233,30,140,0.3);
    padding: 0.25rem 0 0.5rem;
    z-index: 199;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 17px;
    font-weight: 500;
    color: #e8e0f0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: #f472b6 !important; background: rgba(233,30,140,0.12); }
  .nav-links a:hover  { color: #fff !important; background: rgba(255,255,255,0.06); }
  .nav-links li:last-child a { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
  .steps-section { padding: 3rem 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-title { font-size: 1.5rem; flex-wrap: wrap; }
  .features-bar { padding: 1.25rem 1rem; gap: 0.75rem; }
}
