/** Shopify CDN: Minification failed

Line 56:10 Expected identifier but found whitespace
Line 56:12 Unexpected "{"
Line 56:21 Expected ":"
Line 116:10 Expected identifier but found whitespace
Line 116:12 Unexpected "{"
Line 116:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcment-countdown (INDEX:3) */
.trust_pilot_link{
  display: flex;
    gap: 5px;
    align-items: center;
}

.tp-widget-trustscore, #translations-main{
  color: #fff;
}


 @media screen and (max-width: 580px){
  
  .tp-widget-trustscore, #translations-main{
  font-size: 10px;
}

  }


  .countdown-item {
      background: #f5f5f5;
      color: #f76619;
  }
  .custom-announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: .4rem 1rem;
  }
  .announcement-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    color: color-mix(in oklab, {{ section.settings.fg }}, transparent 40%);
    flex-shrink: 0;
  }
  .announcement-highlight {
    font-weight: 700;
    color: {{ section.settings.fg }};
  }
  .countdown-timer {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .time-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .countdown-item {
    /* background-color: color-mix(in oklab, {{ section.settings.fg }}, transparent 85%); */
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    border-radius: 10px !important;
    width: 40px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: {{ section.settings.fg }}; */
    font-weight: 700;
    font-size: 15px;
    font-family: ui-monospace, monospace;
    user-select: none;
  }

.countdown-item {
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.25),
    0 2px 6px rgba(0,0,0,0.15);
  border-radius: 12px;
}



.countdown-item {
  animation: pulse 1s infinite;
  box-shadow: 0 0 12px rgba(255, 60, 0, 0.8);
  border-radius: 10px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}



  .discount-code {
    border: 1.5px solid var(--ss-chip-border);
    border-radius: 12px;
    padding: 5px 12px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: {{ section.settings.fg }};
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    transition: transform .06s ease, background-color .2s ease, border-color .2s ease;
  }
  .discount-code:active { transform: scale(0.98); }
  .discount-code:hover {
    background-color: color-mix(in oklab, {{ section.settings.fg }}, transparent 90%);
    border-color: color-mix(in oklab, {{ section.settings.fg }}, transparent 60%);
  }
  @media screen and (max-width: 750px){
    .custom-announcement-bar { flex-direction: column; gap: 8px; }
  }
/* END_SECTION:announcment-countdown */