:root{
  --bg:#101216;
  --card:#171a21;
  --text:#e9edf1;
  --muted:#9aa5b1;
  --accent:#0ea5e9;
  --badge:#1f2937;
  --shadow: 0 6px 18px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html{
  background: linear-gradient(135deg, #0a0d12 0%, #0f1419 15%, #161b22 30%, #0d1117 45%, #1a1f2e 60%, #0d1117 75%, #161b22 90%, #0a0d12 100%);
  background-attachment: fixed;
  min-height: 100vh;
  touch-action: manipulation; 
}
body{
  margin:0;
  background: transparent;
  min-height: 100vh;
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  touch-action: manipulation; 
}
main.container{
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  overflow: visible;
  display: block;
  height: auto;
}

.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  width: min(800px, 100%);
  margin: 12px auto;
  padding: 12px 14px;

  background: rgba(16, 18, 22, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
}

.controls-sticky {
  position: relative;
  z-index: 100;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 12px 0 0;
  width: 100%;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 48px;
}
.controls-sticky-spacer {
  width: 100%;
  height: 0;
  display: none;
  pointer-events: none;
}
.controls-sticky.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 12px 0;
  margin: 0;

}
.controls-sticky.sticky-active .controls {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(16, 18, 22, 0.55);
  backdrop-filter: blur(18px);
}
.controls-sticky.sticky-active .search-toggle-btn {
  margin: 0 auto;
}

.search-toggle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0284c7, #0ea5e9, #38bdf8);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  flex-shrink: 0;
  z-index: 101;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.search-toggle-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0);
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.search-toggle-btn:not(.hidden):hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
}
.search-toggle-btn:active {
  transform: scale(0.95);
}
.search-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.search-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 14px;
  width: min(800px, 100%);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  pointer-events: none;
  transform-origin: top;
  transform: scaleY(0);
}
.search-panel.active {
  max-height: 500px;
  opacity: 1;
  padding: 12px 14px;
  margin: 0 auto 0;
  pointer-events: auto;
  transform: scaleY(1);
}

#searchInput {
  appearance: none;
  outline: none;
  border: none;
  width: 100%;
  max-width: 680px;
  height: 40px;
  background: rgb(18, 22, 30);
  color: #e9edf1;
  padding: 0 12px 0 40px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  font-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239aa5b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px 50%;
}
#searchInput::placeholder { color: #7d8793; }

.controls .filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.controls .sorts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.filter {
  background: #0e1116;
  color: #e9edf1;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: background .15s ease, transform .05s ease;
}
.filter:hover { background: #10141b; }
.filter:active { transform: translateY(1px); }
.filter.active { background: #0ea5e9; color: #fff; }
.sort {
  background: #0e1116;
  color: #e9edf1;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: background .15s ease, transform .05s ease;
}
.sort:hover { background: #10141b; }
.sort:active { transform: translateY(1px); }
.sort.active { background: #970000; color: #fff; }

#grid{
  max-width: 1240px;
  margin: 12px auto 96px;
  padding: 0 12px 120px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 380px){ #grid{ grid-template-columns: 1fr; } }
@media (min-width: 700px){ 
  #grid{ 
    grid-template-columns: repeat(auto-fit, minmax(210px, 300px));
    justify-content: center;
  } 
}

.card{
  background:var(--card);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.card .cover{
  width:100%; aspect-ratio:3/4; object-fit:cover; display:block;
  flex-shrink: 0; 
}
.meta{ 
  padding:10px 12px 12px; 
  display:flex; 
  flex-direction:column; 
  gap:8px; 
  flex: 1; 
  min-height: 0; 
}
.title{
  font-size:13px; font-weight:800; line-height:1.2; margin:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  line-clamp:2;
  flex-shrink: 0; 
}

.price{ display:flex; align-items:center; gap:8px; }
.price .now{ font-size:18px; font-weight:900; letter-spacing:.2px; }

.badges{ display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.badge{
  background:var(--badge); color:#cbd5e1; font-size:11px;
  padding:4px 8px; border-radius:999px;
}
.badge.discount{
  background:rgba(59,130,246,.15);
  color:#cfe2ff;
  border:1px solid rgba(59,130,246,.35);
}

.btn{
  margin-top:auto; 
  width:100%;
  border:0;
  cursor:pointer;
  background: linear-gradient(90deg, #0284c7, #0ea5e9, #38bdf8);
  color:white;
  font-weight: 600;
  font-size:12px;
  padding:12px 12px;
  border-radius:12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 44px;
  line-height: 20px;
  flex-shrink: 0; 
}
.btn:disabled{ 
  background:#1f2937; 
  color:#8e9aa7; 
  cursor:default; 
}
.btn.remove-btn{ 
  background: linear-gradient(90deg, #b91c1c, #dc2626, #ef4444);
  color:#fff;
}
.btn.remove-btn:hover{ 
  background:#b91c1c; 
}

.muted{ color:var(--muted); }

.maintenance-overlay{
  position:fixed;
  inset:0;
  background:rgba(10, 13, 19, 0.94);
  display:none;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index: 2500;
  padding: 24px;
}
.maintenance-overlay.active{ display:flex; }
.maintenance-box{
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(23, 27, 35, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
}
.maintenance-box h2{
  margin:0 0 12px;
  font-size: 22px;
}
.maintenance-box p{
  margin:0;
  font-size:15px;
  color: var(--muted);
}
body.maintenance-active{
  overflow:hidden;
}

.telegram-only-overlay{
  position:fixed;
  inset:0;
  background:rgba(10, 13, 19, 0.98);
  display:none;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index: 3000;
  padding: 24px;
}
.telegram-only-overlay.active{ display:flex; }
.telegram-only-box{
  max-width: 420px;
  width: 100%;
  padding: 32px 24px;
  border-radius: 18px;
  background: rgba(23, 27, 35, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
}
.telegram-only-box h2{
  margin:0 0 16px;
  font-size: 24px;
  font-weight: 800;
}
.telegram-only-box p{
  margin:8px 0;
  font-size:16px;
  color: var(--muted);
  line-height: 1.5;
}
body.telegram-only-active{
  overflow:hidden;
}
body.telegram-only-active main.container{
  display:none;
}

#cartFab{
  position: fixed;
  left: 50%;
  bottom: 17px;
  
  width: clamp(260px, 92vw, 560px);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2100; 
}
#cartFab.show{
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

body.work-hours-notification-visible:not(.cart-open) #cartFab.show {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 10px) !important;
}

.fab-btn{
  width: 100%;
  display:flex; align-items:center; justify-content:space-between;
  background:linear-gradient(180deg,#343c4f,#222837);
  color:#fff; border:1px solid rgba(255,255,255,.06);
  border-radius:16px; padding:14px 16px; font-weight:900; font-size:15px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35); cursor:pointer;
}

#cartBackdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  opacity:0; pointer-events:none; transition:opacity .25s ease; z-index: 2100;
}
#cartBackdrop.show{ opacity:1; pointer-events:auto; }
#cartDrawer{
  position: fixed;
  left: 50%;
  bottom: 0;
  
  width: clamp(320px, 92vw, 720px);

  transform: translate(-50%, 110%);
  background: var(--card);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 24px rgba(0,0,0,.35);
  transition: transform .28s ease;
  z-index: 2101;

  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

#cartDrawer.open{
  transform: translate(-50%, 0);
}

.drawer-head{
  margin:5px;
  position: sticky; top: 0; z-index: 1;
  background: var(--card);
  padding: 12px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

#cartItems{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 6px 14px 12px;
}
#cartClose{
  background:#0e1116; border:0; color:#e9edf1;
  border-radius:10px; padding:12px 14px; cursor:pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  font-size: 18px;
  line-height: 1;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cartClose:hover{ background:#10141b; }

.cart-row{
  display:flex; gap:10px; padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.cart-thumb{ width:56px; height:74px; object-fit:cover; border-radius:8px; }
.cart-info{ flex:1 1 auto; }
.cart-title{ font-weight:600; margin-bottom:4px; }
.cart-meta{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; }

.drawer-footer{
  position: sticky; bottom: 0; z-index: 1;
  background: linear-gradient(0deg, var(--card) 80%, rgba(23,26,33,0));
  padding: 16px 14px 16px;
}
.drawer-footer > div:first-child{
  margin-bottom: 16px;
}

.drawer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.drawer-actions .btn {
  flex: 1 1 50%;
  height: 46px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.15s ease;
}

.drawer-actions .btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.drawer-actions .btn.ghost {
  background: linear-gradient(90deg, #b91c1c, #dc2626, #ef4444);
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.drawer-actions .btn.primary {
  background: linear-gradient(90deg, #0284c7, #0ea5e9, #38bdf8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.icon-btn{
  background:#0e1116; border:0; color:#e9edf1;
  border-radius:10px; padding:8px 10px; cursor:pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  font-weight:700; font-size:12px;
}
.icon-btn:hover{ background:#10141b; }
.icon-btn.danger{
  background:#2a1113; color:#ffd6d6;
  box-shadow: inset 0 0 0 1px rgba(255, 86, 86, .35);
}
.icon-btn.danger:hover{ background:#311416; }

#loaderOverlay{
  position:fixed; inset:0; background:#0f0f12; color:#fff;
  display:flex; align-items:center; justify-content:center; z-index:9999;
  opacity:1; pointer-events:all; transition:opacity .35s ease;
}
#loaderOverlay.hidden{ opacity:0; pointer-events:none; }
.loader-box{ text-align:center; }
.loader-text{ margin-top:12px; font-size:16px; opacity:.85; }
.loader-spinner{
  width:44px; height:44px; border-radius:50%;
  border:4px solid rgba(255,255,255,.2); border-top-color:#fff;
  animation: spin 1s linear infinite; margin:0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

header.header,
.container.header{
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}
header.header *{
  position: static !important;
}

html{
  overflow-x: hidden;
  overflow-y: auto;
}
body{
  overflow-x: hidden;
  overflow-y: auto;
}

.subscriptions-banner {
  width: 100%;
  margin: 12px auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.banner-content {
  position: relative;
  width: 350px;
  height: 120px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  flex: none;
  flex-shrink: 0;
  flex-grow: 0;
}

.banner-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.banner-fallback {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 20px;
  text-align: center;
}

.banner-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #e9edf1;
}

.banner-subtitle {
  font-size: 14px;
  color: #9aa5b1;
  margin: 0 0 16px 0;
}

.subscriptions-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.subscriptions-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: #171a21;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #e9edf1;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #9aa5b1;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e9edf1;
}

.modal-body {
  padding: 15px;
  overflow-y: auto;
  flex: 1;
}

.subscription-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
}

.subscription-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: #9aa5b1;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.subscription-tab.active {
  background: linear-gradient(135deg, #0284c7, #0ea5e9, #38bdf8);
  color: #fff;
}

.subscriptions-section {
  margin-bottom: 32px;
}

.subscriptions-section.hidden {
  display: none;
}

.subscriptions-section.active {
  display: block;
}

.subscriptions-section:last-child {
  margin-bottom: 0;
}

.subscriptions-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #e9edf1;
}

.period-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
}

.period-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #9aa5b1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.period-btn.active {
  background: linear-gradient(135deg, #0284c7, #0ea5e9, #38bdf8);
  color: #fff;
}

.subscription-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscription-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.subscription-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(14, 165, 233, 0.3);
}

.subscription-item-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.subscription-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.subscription-info {
  flex: 1;
  min-width: 0;
}

.subscription-name {
  font-size: 16px;
  font-weight: 700;
  color: #e9edf1;
  margin: 0 0 4px 0;
}

.subscription-duration {
  font-size: 13px;
  color: #9aa5b1;
  margin: 0;
}

.subscription-price {
  font-size: 20px;
  font-weight: 900;
  color: #e9edf1;
  white-space: nowrap;
  margin-left: auto;
}

.subscription-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.subscription-add-btn {
  background: linear-gradient(90deg, #0284c7, #0ea5e9, #38bdf8);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-add-btn:disabled {
  background: #1f2937;
  color: #8e9aa7;
  cursor: default;
  opacity: 0.6;
}

.subscription-remove-btn {
  background: linear-gradient(90deg, #b91c1c, #dc2626, #ef4444);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 600px) {
  .subscription-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  .subscription-item-top {
    flex: 1;
    min-width: 0;
  }
  
  .subscription-image {
    width: 80px;
    height: 80px;
  }
  
  .subscription-price {
    margin-left: 0;
  }
  
  .subscription-item-bottom {
    flex-direction: row;
    width: auto;
    flex-shrink: 0;
  }
  
  .subscription-add-btn,
  .subscription-remove-btn {
    flex: 0 0 auto;
  }
}

.subscription-add-btn:hover,
.subscription-remove-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.subscription-add-btn:active,
.subscription-remove-btn:active {
  transform: translateY(0);
}

.work-hours-notification {
  position: fixed;
  bottom: 18px;
  left: 12px;
  right: 12px;
  background: linear-gradient(180deg, rgba(255, 127, 0, 0.95), rgba(255, 176, 0, 0.92));
  color: #fff;
  padding: 14px 16px;
  z-index: 2200;
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.work-hours-notification:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .work-hours-notification {
  transform: translateY(calc(100% + 20px)) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.work-hours-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.work-hours-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.work-hours-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.work-hours-text strong {
  font-weight: 600;
}

@media (max-width: 480px) {
  .work-hours-notification {
    bottom: 25px;
    left: 8px;
    right: 8px;
    padding: 12px 14px;
  }
  
  .work-hours-content {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .work-hours-icon {
    font-size: 20px;
  }
  
  .work-hours-text {
    font-size: 13px;
    line-height: 1.4;
  }
}
