@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
/* Liberton cart drawer (dark) */
.lc-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  transition: background 150ms ease, transform 150ms ease;
  position: relative;
}
.lc-cart-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.lc-cart-ico {
  width: 22px;
  height: 22px;
  fill: #fff;
  opacity: 0.95;
}

.lc-cart-badge {
  position: absolute;
  top: 6px;
  right: 7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
}

.lc-drawer-overlay {
  position: fixed;
  inset: 0;
  top: 100px;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 9998;
}

.lc-drawer {
  position: fixed;
  top: 100px !important;          /* <--- ГОЛОВНА ЗМІНА: !important змушує відступити зверху */
  right: 0;
  width: min(420px, 92vw);
  height: calc(100vh - 100px);    /* Висота на весь екран мінус шапка */
  transform: translateX(110%);
  transition: transform 200ms ease;
  z-index: 9999;

  background: linear-gradient(180deg, rgba(15,15,15,0.98), rgba(10,10,10,0.98));
  border-left: 1px solid rgba(255,255,255,0.08);
  /* ... інші стилі (shadow, color) залиш як були ... */
  color: rgba(255,255,255,0.92);
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;


  background: linear-gradient(180deg, rgba(15,15,15,0.98), rgba(10,10,10,0.98));
  border-left: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);

  display: flex;
  flex-direction: column;
}

.lc-open .lc-drawer-overlay { opacity: 1; pointer-events: auto; }
.lc-open .lc-drawer { transform: translateX(0); }

.lc-drawer-head {
  padding: 18px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-drawer-title { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
.lc-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.lc-drawer-close:hover { background: rgba(255,255,255,0.12); }
.lc-drawer-close svg { width: 18px; height: 18px; fill: #fff; opacity: 0.9; }

.lc-drawer-body {
  padding: 0 18px 18px;
  overflow: auto;
  flex: 1;
}

.lc-cart-empty {
  padding: 16px 0;
  opacity: 0.85;
  font-size: 14px;
}

.lc-mini-table {
  width: 100%;
  border-collapse: collapse;
}
.lc-mini-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lc-mini-img img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }


/* Ціни та кількість - Помаранчевий */
.lc-mini-price, .lc-mini-meta, .lc-mini-sum {
    color: #ff3c00 !important;
    opacity: 1 !important;
}

/* Кнопка видалення (базовий стан) */
.lc-mini-remove {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.06) !important; /* Ледь помітний фон */
    border-radius: 10px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease-in-out !important; /* Плавний перехід для фону та іконки */
    border: none !important;
    flex-shrink: 0 !important;
}

/* Ефект при наведенні на кнопку видалення (як у хрестика) */
.lc-mini-remove:hover {
    background: rgba(255, 255, 255, 0.15) !important; /* Робимо фон яскравішим, як у .lc-drawer-close */
    transform: scale(1.05) !important; /* Трішки збільшуємо, щоб було зрозуміло, що кнопка активна */
}

/* Зміна кольору самої іконки смітника при наведенні */
.lc-mini-remove:hover svg {
    fill: #ffffff !important; /* При наведенні іконка стає білою (акцентованою) */
    filter: drop-shadow(0 0 2px rgba(255, 60, 0, 0.5)) !important; /* Додаємо легке помаранчеве сяйво */
}

/* Сама SVG іконка (базовий стан) */
.lc-mini-remove svg {
    width: 18px !important;
    height: 18px !important;
    fill: #ff3c00 !important; /* Твій фірмовий помаранчевий */
    transition: fill 0.2s ease !important;
}

.lc-summary {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-summary strong { font-size: 14px; }
.lc-summary .lc-total { font-size: 14px; font-weight: 800; }

.lc-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lc-btn {
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}
.lc-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
/* Кнопка Оформити замовлення */
.lc-btn-primary {
    background: #ff3c00 !important;
    color: #fff !important;
    border: none !important;
}
.lc-btn-primary:hover { background: rgba(255,255,255,0.20); }

@media (max-width: 520px) {
  .lc-actions { grid-template-columns: 1fr; }
}
.lc-drawer-body .lc-mini-name {
    color: #ff4d4f !important;
}





/* Примусовий шрифт для всього кошика та кожного елемента в ньому */
.lc-drawer, 
.lc-drawer div, 
.lc-drawer span, 
.lc-drawer a, 
.lc-drawer strong {
    font-family: 'Play', sans-serif !important;
}

/* Назви товарів */
.lc-mini-name a {
    color: #ff3c00 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-family: 'Play', sans-serif !important;
}

/* Прибираємо підкреслення при наведенні */
.lc-mini-name a:hover {
    text-decoration: none !important;
    opacity: 0.7 !important;
}

/* Мета-дані (ціна, кількість) */
.lc-mini-meta, .lc-mini-meta span {
    font-family: 'Play', sans-serif !important;
    color: #ff3c00 !important;
    opacity: 1 !important;
}



