/**
 * MyYarnStore Out of Office Notification Block
 * Modern Shopify-style banner — warm amber tones, clean typography.
 */

/* ── Outer wrapper ──────────────────────────────────────────────────── */
.ooo-notification {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

/* ── Banner card ────────────────────────────────────────────────────── */
.ooo-notification__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(249, 115, 22, 0.08);
  transition: box-shadow 0.2s ease;
}

.ooo-notification__inner:hover {
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.12);
}

/* RTL: accent border on right side */
.ooo-notification--rtl .ooo-notification__inner {
  border-left: 1px solid #fed7aa;
  border-right: 4px solid #f97316;
}

/* ── Icon ────────────────────────────────────────────────────────────── */
.ooo-notification__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #f97316;
  margin-top: 1px;
}

/* ── Message text ────────────────────────────────────────────────────── */
.ooo-notification__message {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #7c2d12;
  font-weight: 450;
}

.ooo-notification__message p {
  margin: 0 0 4px 0;
}

.ooo-notification__message p:last-child {
  margin-bottom: 0;
}

.ooo-notification__message strong,
.ooo-notification__message b {
  font-weight: 700;
  color: #9a3412;
}

.ooo-notification__message a {
  color: #ea580c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ooo-notification__message a:hover {
  color: #c2410c;
}

/* ── RTL text alignment ──────────────────────────────────────────────── */
.ooo-notification--rtl .ooo-notification__message {
  text-align: right;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .ooo-notification__inner {
    padding: 12px 14px;
    gap: 10px;
  }

  .ooo-notification__icon {
    width: 30px;
    height: 30px;
  }

  .ooo-notification__icon svg {
    width: 16px;
    height: 16px;
  }

  .ooo-notification__message {
    font-size: 13px;
  }
}
