/* ─── ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --bg-page:             #ffffff;
  --bg-dark:             #1c1c1e;
  --bg-dark-secondary:   #2c2c2e;
  --bg-dark-hover:       #3a3a3c;
  --accent:              #e63946;
  --accent-hover:        #c1121f;
  --text-light:          #f5f5f5;
  --text-muted:          #a0a0a0;
  --text-dark:           #1c1c1e;
  --border-dark:         #3a3a3c;

  /* ─── LIGHT SURFACE (modal + sidebar) ────────────────── */
  --modal-bg:            #ffffff;
  --modal-text:          #1c1c1e;
  --modal-text-muted:    #666666;
  --modal-border:        #e0e0e0;
  --modal-surface:       #f5f5f5;
  --modal-surface-hover: #e8e8e8;

  --navbar-height:       64px;
  --transition:          0.2s ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  min-height: 100vh;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--navbar-height);
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.navbar__logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── CART BUTTON ────────────────────────────────────────── */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: background-color var(--transition);
}

.cart-btn:hover {
  background-color: var(--bg-dark-hover);
}

.cart-btn__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--accent);
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.cart-btn__badge.visible {
  opacity: 1;
}

/* ─── MAIN CONTENT ───────────────────────────────────────── */
.main-content {
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
}

ip-embed-leaflet {
  display: block;
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
}

/* ─── HORIZON STATES ─────────────────────────────────────── */
.horizon-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--text-muted);
  font-size: 1rem;
}

.horizon-state--error {
  color: var(--accent);
}

/* ─── NO SCROLL ──────────────────────────────────────────── */
body.no-scroll {
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────
   MODAL
───────────────────────────────────────────────────────── */

/* ─── MODAL BACKDROP ─────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal--visible {
  display: flex;
}

/* ─── MODAL DIALOG ───────────────────────────────────────── */
.modal__dialog {
  position: relative;
  background-color: var(--modal-bg);
  color: var(--modal-text);
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ─── CLOSE BUTTON ───────────────────────────────────────── */
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--modal-surface);
  border: none;
  color: var(--modal-text);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.modal__close:hover {
  background-color: var(--modal-surface-hover);
}

/* ─── FULL WIDTH HEADER ──────────────────────────────────── */
.modal__header {
  padding-right: 48px;
}

.modal__offer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--modal-text);
  line-height: 1.3;
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.modal__divider {
  border: none;
  border-top: 1px solid var(--modal-border);
}

/* ─── TWO COLUMN BODY ────────────────────────────────────── */
.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ─── IMAGE ──────────────────────────────────────────────── */
.modal__product-image-wrap {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--modal-surface);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── PRODUCT INFO ───────────────────────────────────────── */
.modal__product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── PRICING ────────────────────────────────────────────── */
.modal__product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.modal__sale-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--modal-text);
}

.modal__price {
  font-size: 1rem;
  color: var(--modal-text-muted);
  text-decoration: line-through;
}

.modal__price:empty {
  display: none;
}

/* ─── PRODUCT SELECTOR DROPDOWN ─────────────────────────── */
.modal__product-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal__product-selector label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--modal-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal__product-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--modal-border);
  background-color: var(--modal-bg);
  color: var(--modal-text);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: 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='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--transition);
}

.modal__product-select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ─── SUMMARY ────────────────────────────────────────────── */
.modal__offer-summary {
  font-size: 0.9rem;
  color: var(--modal-text-muted);
  line-height: 1.6;
}

/* ─── ACTIONS ROW ────────────────────────────────────────── */
.modal__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* ─── QUANTITY ───────────────────────────────────────────── */
.modal__quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--modal-border);
  border-radius: 8px;
  padding: 6px 12px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  color: var(--modal-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.qty-btn:hover {
  background-color: var(--modal-surface);
}

.qty-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--modal-text);
  min-width: 20px;
  text-align: center;
}

/* ─── ADD TO CART ────────────────────────────────────────── */
.modal__add-to-cart {
  flex: 1;
  padding: 14px 24px;
  background-color: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition);
}

.modal__add-to-cart:hover {
  background-color: var(--accent-hover);
}

/* ─────────────────────────────────────────────────────────
   CART SIDEBAR
───────────────────────────────────────────────────────── */

/* ─── SIDEBAR OVERLAY ────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.5);
}

.sidebar-overlay.visible {
  display: block;
}

/* ─── CART SIDEBAR ───────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 301;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: var(--modal-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

/* ─── SIDEBAR HEADER ─────────────────────────────────────── */
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--modal-border);
  flex-shrink: 0;
}

.cart-sidebar__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--modal-text);
}

.cart-sidebar__close {
  background: none;
  border: none;
  color: var(--modal-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.cart-sidebar__close:hover {
  color: var(--modal-text);
}

/* ─── SIDEBAR ITEMS ──────────────────────────────────────── */
.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── EMPTY STATE ────────────────────────────────────────── */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--modal-text-muted);
  font-size: 0.95rem;
}

.cart-empty svg {
  opacity: 0.2;
  stroke: var(--modal-text);
}

/* ─── CART ITEM ──────────────────────────────────────────── */
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--modal-border);
}

.cart-item:last-child {
  border-bottom: none;
}

/* ─── CART ITEM IMAGE ────────────────────────────────────── */
.cart-item__image-wrap {
  width: 72px;
  height: 72px;
  background-color: var(--modal-surface);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--modal-surface);
  border-radius: 8px;
}

/* ─── CART ITEM DETAILS ──────────────────────────────────── */
.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--modal-text);
  line-height: 1.3;
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--modal-text-muted);
}

/* ─── CART ITEM CONTROLS ─────────────────────────────────── */
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--modal-border);
  background-color: var(--modal-surface);
  color: var(--modal-text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.cart-item__qty-btn:hover {
  background-color: var(--modal-surface-hover);
}

.cart-item__qty-btn--remove:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.cart-item__qty {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--modal-text);
  min-width: 20px;
  text-align: center;
}

/* ─── SIDEBAR FOOTER ─────────────────────────────────────── */
.cart-sidebar__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--modal-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.cart-sidebar__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--modal-text);
}

.cart-sidebar__checkout {
  width: 100%;
  padding: 14px;
  background-color: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition);
}

.cart-sidebar__checkout:hover {
  background-color: var(--accent-hover);
}

/* ─────────────────────────────────────────────────────────
   CHECKOUT MODAL
───────────────────────────────────────────────────────── */

.modal__dialog--checkout {
  max-width: 600px;
}

/* ─── OPTION CARDS ───────────────────────────────────────── */
.checkout-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 8px 0;
}

.checkout-option-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background-color: var(--modal-surface);
  border: 1px solid var(--modal-border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.checkout-option-card:hover {
  background-color: var(--modal-surface-hover);
  border-color: var(--accent);
}

.checkout-option-card__icon {
  color: var(--accent);
}

.checkout-option-card__text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--modal-text);
  margin-bottom: 4px;
}

.checkout-option-card__text p {
  font-size: 0.82rem;
  color: var(--modal-text-muted);
  line-height: 1.4;
}

/* ─── BACK BUTTON ────────────────────────────────────────── */
.checkout-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--modal-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.checkout-back-btn:hover {
  color: var(--modal-text);
}

/* ─── REPS GRID ──────────────────────────────────────────── */
.checkout-reps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding: 4px 2px;
}

.rep-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  background-color: var(--modal-surface);
  border: 1px solid var(--modal-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.rep-card:hover {
  background-color: var(--modal-surface-hover);
  border-color: var(--accent);
}

.rep-card__image-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--modal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rep-card__image-wrap--placeholder {
  background-color: var(--modal-surface-hover);
}

.rep-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-card__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--modal-text);
  text-align: center;
  line-height: 1.3;
}

/* ─── MANUAL FORM ────────────────────────────────────────── */
.checkout-manual-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-manual-form__country,
.checkout-manual-form__number {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-manual-form__country label,
.checkout-manual-form__number label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--modal-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-phone-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--modal-border);
  background-color: var(--modal-bg);
  color: var(--modal-text);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.checkout-phone-input:focus {
  outline: none;
  border-color: var(--accent);
}

.checkout-phone-input--error {
  border-color: var(--accent);
}

/* ─── REP DIRECT VIEW ────────────────────────────────────── */
.checkout-rep-direct {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.checkout-rep-direct__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
}

.checkout-rep-direct__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--modal-text);
}

/* ─── FLOATING REP CARD ──────────────────────────────────── */
.rep-floating-card {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--modal-bg);
  border: 1px solid var(--modal-border);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.rep-floating-card__image-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--modal-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rep-floating-card__image-wrap img{
  width: 100%;
}

.rep-floating-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--modal-text);
  white-space: nowrap;
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rep-floating-card {
    bottom: 16px;
    left: 16px;
    padding: 6px 14px 6px 6px;
  }

  .rep-floating-card__image-wrap {
    width: 36px;
    height: 36px;
  }

  .rep-floating-card__name {
    font-size: 0.82rem;
  }
}

/* ─────────────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────────────── */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--modal-bg);
  border: 1px solid var(--modal-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: all;
  min-width: 280px;
  max-width: 340px;
  animation: toast-in 0.25s ease forwards;
}

.toast--leaving {
  animation: toast-out 0.25s ease forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ─── TOAST IMAGE ────────────────────────────────────────── */
.toast__image-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--modal-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── TOAST CONTENT ──────────────────────────────────────── */
.toast__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--modal-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.toast__meta {
  font-size: 0.8rem;
  color: var(--modal-text-muted);
}

.toast__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  margin-top: 2px;
  transition: color var(--transition);
}

.toast__link:hover {
  color: var(--accent-hover);
}

/* ─── TOAST CLOSE ────────────────────────────────────────── */
.toast__close {
  background: none;
  border: none;
  color: var(--modal-text-muted);
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition);
}

.toast__close:hover {
  color: var(--modal-text);
}

/* ─────────────────────────────────────────────────────────
   HORIZON LOADER
───────────────────────────────────────────────────────── */

.horizon-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height));
  width: 100%;
  background-color: var(--bg-page);
}

.loader {
  color: var(--bg-dark);
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em,
    -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
    -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
    -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
    -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
    -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
    -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
    0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}