/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
.header-shipping-message {
flex: 1;
display: flex;
justify-content: center;
align-items: flex-start;
font-size: 16px;
color #00;
text-align: center;

}

/* Ukryj domyślnie */
.mobile-shipping-message {
  display: none;
}

/* Pokaż tylko na mobile */
@media screen and (max-width: 768px) {
  .mobile-shipping-message {
    display: block;
    background-color: #f8f8f8;
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
  }
}
