/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.wd-prefooter {
		display:none;
	}	

.blog .wd-prefooter {
		display:block;
	}	

.blog a.btn-read-more.more-link {
    BACKGROUND: #78B9BA!IMPORTANT;
}

.archive span.select2-search.select2-search--dropdown {
    display: none;
}

/* ===== Pretty product countdown (works with your existing markup) ===== */
.wd-product-countdown.wd-style-standard{
--countdown-accent: #444;         /* dark neutral */
--countdown-bg: rgba(0,0,0,0.05);

  --countdown-text: #2b2b2b;             /* body text color */
  --countdown-muted: rgba(43,43,43,.6);  /* label color */

  display:flex;
  gap:12px;
  align-items:stretch;
  font-variant-numeric: tabular-nums; /* avoids digit “jumps” */
  color:var(--countdown-text);
}

/* Each unit as a rounded badge */
.wd-product-countdown .wd-timer-days,
.wd-product-countdown .wd-timer-hours,
.wd-product-countdown .wd-timer-min,
.wd-product-countdown .wd-timer-sec{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-width:70px;
  padding:10px 12px 8px;
  background:var(--countdown-bg);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  position:relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  backdrop-filter:saturate(140%) blur(2px);
  transition:transform .2s ease, box-shadow .2s ease;
}
.wd-product-countdown .wd-timer-days:hover,
.wd-product-countdown .wd-timer-hours:hover,
.wd-product-countdown .wd-timer-min:hover,
.wd-product-countdown .wd-timer-sec:hover{
  transform:translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* Numbers */
.wd-product-countdown .wd-timer-value{
  font-size:26px;
  line-height:1;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--countdown-accent);
  margin-bottom:6px;
}

/* Labels (Tage, Std., Min., Sek.) */
.wd-product-countdown .wd-timer-text{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--countdown-muted);
}

/* Subtle separators between badges */
.wd-product-countdown > span:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-6px; top:14px; bottom:14px;
  width:1px;
  background:rgba(0,0,0,.06);
  border-radius:1px;
}

/* Compact on small screens */
@media (max-width: 480px){
  .wd-product-countdown{ gap:8px; }
  .wd-product-countdown .wd-timer-days,
  .wd-product-countdown .wd-timer-hours,
  .wd-product-countdown .wd-timer-min,
  .wd-product-countdown .wd-timer-sec{
    min-width:58px;
    padding:8px 8px 7px;
    border-radius:12px;
  }
  .wd-product-countdown .wd-timer-value{ font-size:22px; }
  .wd-product-countdown .wd-timer-text{ font-size:10px; }
}


