/** Shopify CDN: Minification failed

Line 23:0 All "@import" rules must come first

**/
/* ══════════════════════════════════════
   CardAnvil Global CSS v4
   Súbor: assets/cardanvil.css
   ══════════════════════════════════════ */

/* ── RESET CURSOR — odstrán custom cursor ── */
*, *::before, *::after {
  cursor: auto !important;
}
a, button, [role="button"], select, input[type="submit"],
input[type="button"], input[type="reset"], label[for],
.ca-qty-btn, .ca-search-toggle, .ca-header-hamburger,
.ca-packeta-btn, .ca-packeta-change, .ca-collage-item {
  cursor: pointer !important;
}

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&family=Playfair+Display:wght@700&display=swap');

/* ── ROOT VARS ── */
:root {
  --black:   #060406;
  --deep:    #3d0008;
  --blood:   #6b0f1a;
  --red:     #a01020;
  --gold:    #c9a84c;
  --white:   #f4ede8;
  --muted:   #7a6570;
  --card-bg: #1a161a;
  --dark-bg: #100d10;
}

/* ── GLOBAL ── */
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* Remove Shopify defaults that break layout */
.shopify-section { margin: 0 !important; }

/* ── SHARED FADE UP ANIMATION ── */
.ca-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.ca-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION SHARED STYLES ── */
.ca-section {
  padding: 80px 80px;
  background: var(--black);
}
.ca-section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(107,15,26,.3);
}
.ca-section-tag {
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.ca-section-title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: .04em;
  line-height: 1;
  margin: 0;
}
.ca-view-all {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,101,112,.35);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.ca-view-all:hover { color: var(--white); border-color: var(--white); }

/* ── PRODUCTS GRID ── */
.ca-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ── PRODUCT CARD ── */
.ca-product-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
}
.ca-product-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dark-bg);
  position: relative;
  display: block;
}
.ca-product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.ca-product-card:hover .ca-product-img-wrap img { transform: scale(1.05); }

.ca-p-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--blood); color: var(--white);
  font-size: .5rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
}
.ca-p-badge.gold { background: var(--gold); color: #1a0a00; }

.ca-product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,4,6,.9) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 16px; z-index: 2;
}
.ca-product-card:hover .ca-product-overlay { opacity: 1; }

.ca-quick-add {
  width: 100%; background: var(--blood); border: none; color: var(--white);
  padding: 11px; font-family: 'DM Sans', Arial, sans-serif;
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer !important;
  clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
  transition: background .25s;
}
.ca-quick-add:hover:not(:disabled) { background: var(--red); }
.ca-quick-add:disabled {
  background: var(--dark-bg) !important;
  color: var(--muted) !important;
  cursor: not-allowed !important;
  clip-path: none !important;
  border: 1px solid rgba(107,15,26,.2);
}

.ca-product-info {
  padding: 16px 16px 20px;
  background: var(--dark-bg);
  border-top: 1px solid rgba(107,15,26,.2);
}
.ca-product-name {
  font-family: 'Playfair Display', serif;
  font-size: .92rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
  text-decoration: none; display: block;
}
.ca-product-sub { font-size: .65rem; color: var(--muted); margin-bottom: 10px; }
.ca-price-row { display: flex; align-items: center; justify-content: space-between; }
.ca-price {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 1.25rem; color: var(--white);
}
.ca-price-old { font-size: .72rem; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.ca-stars span { color: var(--gold); font-size: .55rem; }

/* ── MARQUEE ── */
.ca-marquee { overflow: hidden; background: var(--deep); border-top: 1px solid rgba(107,15,26,.4); border-bottom: 1px solid rgba(107,15,26,.4); padding: 12px 0; }
.ca-marquee-track { display: flex; animation: ca-scroll 28s linear infinite; white-space: nowrap; }
.ca-mq-item { font-family: 'Bebas Neue', 'Arial Black', sans-serif; font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); padding: 0 36px; display: flex; align-items: center; gap: 36px; }
.ca-mq-item::after { content: '◆'; color: var(--red); font-size: .4rem; }

@keyframes ca-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SALE BANNER ── */
.ca-sale-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--blood) 50%, #a01020 100%);
  padding: 56px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.ca-sale-banner::before {
  content: 'SALE';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 12rem;
  color: rgba(255,255,255,.04); letter-spacing: .1em; pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ca-section { padding: 60px 24px; }
  .ca-products-grid { grid-template-columns: 1fr 1fr; }
  .ca-sale-banner { padding: 40px 24px; }
}
@media (max-width: 540px) {
  .ca-products-grid { grid-template-columns: 1fr; }
}
