/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Announcement / notice bar smooth marquee (safe + GPU accelerated) */
/* adjust selectors if your theme uses a different class name */

.announcement, .announcement-bar, .notice-bar, .topbar, .header-notice, .site-announcement {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.announcement .notice-content,
.announcement-bar .notice-content,
.notice-bar .notice-content,
.topbar .notice-content,
.header-notice .notice-content,
.site-announcement .notice-content {
  display: inline-block;
  padding-left: 100%;         /* start off-screen to the right */
  animation: scroll-left 14s linear infinite;
  will-change: transform;     /* hint for smoother rendering on mobile */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Pause on hover (desktop) */
.announcement .notice-content:hover,
.notice-bar .notice-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
