/* Wrapper */
.pcs-wrap {
  width: 100%;
}

/* Main timer box (always shown, because title always shows) */
.pcs-timer {
  border: 1px solid var(--pcs-wrap-border, #e5e5e5);
  border-radius: var(--pcs-radius, 12px);
  padding: var(--pcs-padding, 14px);
}

/* Title */
.pcs-title {
  font-weight: 700;
  color: var(--pcs-title-color, #111111);
  font-size: clamp(14px, 1.6vw, var(--pcs-title-size, 16px));
  text-align: left;
}

/* Title layout: icon left, text stacked and left-aligned */
.pcs-title > div {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  text-align: left !important;
}

.pcs-title img {
  flex: 0 0 auto !important;
  display: block !important;
}

.pcs-title > div > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  line-height: 1.2;
}

/* Grid (only present when active; styles kept for active state) */
.pcs-grid {
  display: grid;
  gap: var(--pcs-gap, 10px);
margin-bottom: 3px;
margin-top: 13px;
}

/* Desktop column layouts */
.pcs-cols-4 .pcs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pcs-cols-3 .pcs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Individual time boxes */
.pcs-box {
  background: var(--pcs-box-bg, #ffffff);
  border: 1px solid var(--pcs-box-border, #f0f0f0);
  border-radius: calc(var(--pcs-radius, 12px) - 2px);
  padding: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Numbers */
.pcs-num {
  font-weight: 800;
  line-height: 1;
  color: var(--pcs-num-color, #111111);

  font-size: clamp(18px, 4.5vw, var(--pcs-num-size, 32px));

  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2ch;
  text-align: center;
  margin-bottom: -10px;
}

/* When Days is hidden, hours can exceed 2 digits */
.pcs-cols-3 .pcs-num[data-pcs="hours"] {
  width: 4ch;
}

/* Labels */
.pcs-lbl {
  margin-top: 6px;
  opacity: 0.85;
  color: var(--pcs-lbl-color, #555555);
  font-size: clamp(11px, 1.8vw, var(--pcs-lbl-size, 12px));
  white-space: nowrap;
}

/* Remove inactive message completely (extra safety) */
.pcs-message {
  display: none !important;
}

/* Responsive layout */
@media (max-width: 480px) {
  .pcs-cols-4 .pcs-grid,
  .pcs-cols-3 .pcs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcs-title > div {
    flex-wrap: nowrap !important;
  }
}

/* Optional helpers you used elsewhere */
.delivery-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-row img {
  flex: 0 0 auto;
  display: block;
}

.delivery-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.delivery-text strong {
  font-size: 16px;
}

.delivery-text span {
  font-size: 13px;
  font-weight: 300;
}

.shipping-promotions-information__item {
  flex-direction: row !important;
  justify-content: center!important;
height: auto;
}

.shipping-promotions-information{
padding-top: 15px;
    padding-bottom: 15px!important;

}

.shipping-promotions-information__description {
  text-align: left;
line-height: 16px;
}

.shipping-promotions-information--grid {
    padding-bottom: 0px;
}