.cigdepot-ticker {
  overflow: hidden;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px solid #222;
}

.cigdepot-ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: cigdepot-ticker-scroll 42s linear infinite;
  padding: 8px 0;
}

.cigdepot-ticker__item {
  white-space: nowrap;
}

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

.cigdepot-reviews__list,
.cigdepot-warehouse__grid {
  display: grid;
  gap: 16px;
}

.cigdepot-warehouse__grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.cigdepot-warehouse__item img,
.cigdepot-warehouse__item video {
  width: 100%;
  height: auto;
  display: block;
}

.cigdepot-warehouse__placeholder {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  color: #444;
  padding: 16px;
  text-align: center;
}

.cigdepot-reviews__stars {
  color: #c9a227;
  margin: 0 0 8px;
}

.cd-sales-notify {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99980;
  max-width: min(360px, calc(100vw - 32px));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}

.cd-sales-notify.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cd-sales-notify__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e6ebe8;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(18, 27, 23, .14);
  color: #121b17;
  position: relative;
}

.cd-sales-notify__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 18px;
}

.cd-sales-notify__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
  background: #f4f6f5;
}

.cd-sales-notify__body {
  min-width: 0;
  padding-right: 18px;
}

.cd-sales-notify__line {
  font-size: 12px;
  color: #555;
}

.cd-sales-notify__title {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cd-sales-notify__meta {
  margin-top: 4px;
  font-size: 11px;
  color: #888;
}

.cd-sales-notify__close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 4px;
}

@media (max-width: 640px) {
  .cd-sales-notify {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}
