/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 145:0 Unexpected "<"

**/
<style>
/* === Out of Stock Notification Box === */

.oos-box-link {
  display: block;
  width: 350px;
  text-decoration: none;
  margin: 20px 0;
  border-radius: 14px;
  outline: none;
}

.oos-box {
  display: flex;
  align-items: stretch;
  width: 350px;
  border-radius: 14px;
  background: #1a1a2e;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 0 2px rgba(255, 180, 60, 0.6),
    0 0 18px rgba(255, 160, 30, 0.35),
    0 0 40px rgba(255, 140, 0, 0.15),
    0 4px 24px rgba(0, 0, 0, 0.5);
  animation: oos-glow-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oos-box-link:hover .oos-box {
  transform: translateY(-2px) scale(1.012);
  box-shadow:
    0 0 0 2px rgba(255, 195, 80, 0.85),
    0 0 26px rgba(255, 170, 40, 0.55),
    0 0 55px rgba(255, 140, 0, 0.3),
    0 6px 30px rgba(0, 0, 0, 0.55);
}

@keyframes oos-glow-pulse {
  0%   { box-shadow: 0 0 0 2px rgba(255, 180, 60, 0.5), 0 0 16px rgba(255, 155, 25, 0.3), 0 0 36px rgba(255, 130, 0, 0.12), 0 4px 20px rgba(0,0,0,0.45); }
  50%  { box-shadow: 0 0 0 2px rgba(255, 210, 90, 0.85), 0 0 28px rgba(255, 175, 45, 0.55), 0 0 58px rgba(255, 145, 0, 0.25), 0 4px 20px rgba(0,0,0,0.45); }
  100% { box-shadow: 0 0 0 2px rgba(255, 180, 60, 0.5), 0 0 16px rgba(255, 155, 25, 0.3), 0 0 36px rgba(255, 130, 0, 0.12), 0 4px 20px rgba(0,0,0,0.45); }
}

/* Shimmer sweep overlay */
.oos-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 220, 130, 0.07) 50%,
    transparent 70%
  );
  animation: oos-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes oos-shimmer {
  0%   { left: -100%; }
  40%  { left: 140%; }
  100% { left: 140%; }
}

/* Left Section */
.oos-left {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  background: rgba(255, 140, 0, 0.08);
  position: relative;
  z-index: 2;
}

.oos-line1,
.oos-line2 {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 17px;
  color: #ffd580;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Divider */
.oos-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 180, 60, 0.5) 20%,
    rgba(255, 200, 80, 0.7) 50%,
    rgba(255, 180, 60, 0.5) 80%,
    transparent
  );
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Right Section */
.oos-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  position: relative;
  z-index: 2;
}

.oos-cta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e8d5a3;
  text-align: center;
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.015em;
}

.oos-box-link:hover .oos-cta {
  color: #fff5d6;
}
</style>