/* === REBEL SYNDICATE - MOVEMENT BRAND CSS === */

/* Navigation Enhancement */
.site-header nav a, .nav-menu a, .main-navigation a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85em;
  transition: color 0.2s ease;
}

.site-header nav a:hover, .nav-menu a:hover, .main-navigation a:hover {
  color: #dc2626 !important;
}

/* Shop Now / CTA Buttons */
.wc-block-grid__product-add-to-cart a,
.single_add_to_cart_button,
.button.alt,
a.button,
button.button {
  background: #dc2626 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 14px 32px !important;
  transition: background 0.2s ease !important;
}

.wc-block-grid__product-add-to-cart a:hover,
.single_add_to_cart_button:hover,
.button.alt:hover {
  background: #b91c1c !important;
}

/* Product Cards */
.wc-block-grid__product,
.product {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-block-grid__product:hover,
li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.15);
}

/* Product Titles */
.wc-block-grid__product-title,
.woocommerce-loop-product__title {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Price Styling */
.woocommerce-Price-amount, .price {
  color: #dc2626 !important;
  font-weight: 700;
}

/* Section Headings */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Footer Enhancement */
.site-footer {
  background: #0a0a0a;
  color: #e0e0e0;
}

.site-footer a {
  color: #dc2626;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

/* Announcement / Tag Line */
.hero-tagline, .hero-subtitle {
  font-style: italic;
  letter-spacing: 1px;
  color: #e0e0e0;
}

/* Mobile Nav Fix */
@media (max-width: 768px) {
  .main-navigation a {
    font-size: 1em;
    padding: 10px 16px;
  }
}

/* === HEADER LOGO SIZE FIX === */
.site-header .custom-logo,
.site-branding img,
img.custom-logo {
  max-height: 60px !important;
  width: auto !important;
  max-width: 120px !important;
}

.site-branding {
  display: flex;
  align-items: center;
}

/* === NAV ITEM NO-WRAP FIX === */
.site-header nav a,
.nav-menu a,
.main-navigation a {
  white-space: nowrap !important;
}

/* === HEADER LAYOUT FIX === */
.site-header {
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;
  min-height: 70px !important;
  overflow: visible !important;
}

.site-branding {
  flex-shrink: 0;
  margin-right: 20px;
}