/*
Theme Name: Mens Cart Theme
Theme URI: https://example.com/mens-cart-theme
Author: Your Name
Author URI: https://example.com
Description: A modern, responsive e-commerce WordPress theme for men's fashion. Features a clean design with gold accents, product grids, hero banners, and full mobile responsiveness.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mens-cart-theme
Tags: e-commerce, fashion, responsive, modern, custom-logo, custom-menu, featured-images

This theme, like WordPress, is licensed under the GPL.
*/

/* ============================================
   IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --color-background: #FFFFFF;
  --color-foreground: #141414;
  --color-primary: #FFC700;
  --color-primary-foreground: #000000;
  --color-secondary: #F5F5F5;
  --color-secondary-foreground: #141414;
  --color-muted: #F5F5F5;
  --color-muted-foreground: #737373;
  --color-border: #E5E5E5;
  --color-input: #E5E5E5;
  
  /* Custom colors */
  --color-gold: #FFC700;
  --color-gold-light: #FFD633;
  --color-dark: #141414;
  --color-light-gray: #F5F5F5;
  --color-medium-gray: #BFBFBF;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border radius */
  --radius: 0.25rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --transition-slower: 500ms ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

.text-gold {
  color: var(--color-gold);
}

.bg-gold {
  background-color: var(--color-gold);
}

.hover-scale {
  transition: transform var(--transition-slow);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.top-bar {
  background-color: var(--color-foreground);
  color: var(--color-background);
  font-size: 0.625rem;
  padding: 0.375rem 1rem;
  text-align: center;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  padding: 0 0.75rem;
}

.site-logo h1 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
}

.site-logo .logo-highlight {
  background-color: var(--color-foreground);
  color: var(--color-primary);
  padding: 0.125rem 0.375rem;
  margin-right: 0.25rem;
}

.mobile-menu-toggle {
  padding: 0.375rem;
  margin-left: -0.375rem;
  display: block;
}

.mobile-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.main-nav a:hover {
  color: var(--color-primary);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-icon {
  padding: 0.375rem;
  transition: color var(--transition-base);
}

.header-icon:hover {
  color: var(--color-primary);
}

.header-icon svg {
  width: 1rem;
  height: 1rem;
}

.cart-badge {
  position: relative;
}

.cart-badge .badge-count {
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  font-size: 0.625rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.mobile-nav {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem;
  animation: fadeIn 0.2s ease-in-out;
}

.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO BANNER STYLES
   ============================================ */
.hero-section {
  background-color: var(--color-background);
  padding: 1rem 0.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 320px;
}

.hero-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.55), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.025em;
  color: var(--color-background);
  margin-bottom: 0.75rem;
  line-height: 0.9;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  max-width: 28rem;
  line-height: 1.6;
}

.hero-cta {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  transition: all var(--transition-slow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta:hover {
  background-color: rgba(255, 199, 0, 0.9);
  box-shadow: 0 10px 25px rgba(255, 199, 0, 0.25);
  transform: translateY(-2px);
}

.hero-side-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-side-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 160px;
  cursor: pointer;
}

.hero-side-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slower);
}

.hero-side-banner:hover img {
  transform: scale(1.1);
}

.hero-side-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.4), transparent);
}

.hero-side-banner .content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.hero-side-banner .badge {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.hero-side-banner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-background);
  margin-bottom: 0.25rem;
}

.hero-side-banner .link {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-background);
  transition: color var(--transition-base);
}

.hero-side-banner .link:hover {
  color: var(--color-primary);
}

/* ============================================
   CATEGORY BANNER STYLES
   ============================================ */
.category-banner {
  padding: 2rem 0.75rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 120px;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.category-card .content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.category-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   PRODUCT GRID STYLES
   ============================================ */
.product-section {
  padding: 2rem 0.75rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  background-color: var(--color-background);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--color-light-gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 0.75rem;
}

.product-category {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-foreground);
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-foreground);
}

/* ============================================
   PROMO BANNER STYLES
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--color-foreground), #2a2a2a);
  color: var(--color-background);
  padding: 3rem 1rem;
  text-align: center;
  margin: 2rem 0;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
}

.promo-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.promo-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.promo-cta {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-weight: 600;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.promo-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ============================================
   BRANDS BANNER STYLES
   ============================================ */
.brands-banner {
  background-color: var(--color-light-gray);
  padding: 2rem 1rem;
  text-align: center;
}

.brands-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.brand-logo {
  opacity: 0.6;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.newsletter-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0.75rem;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.newsletter-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 0.625rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-background);
  font-size: 0.875rem;
  border-radius: var(--radius);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-button {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: opacity var(--transition-base);
}

.newsletter-button:hover {
  opacity: 0.9;
}

.footer-main {
  padding: 2rem 0.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.footer-column {
  margin-bottom: 1rem;
}

.footer-logo {
  grid-column: span 2;
}

.footer-logo h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-highlight {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding: 0.125rem 0.5rem;
  margin-right: 0.25rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  max-width: 20rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.social-link:hover {
  color: var(--color-primary);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0.75rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-methods img {
  height: 1rem;
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .top-bar {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .main-header {
    height: 4rem;
    padding: 0 1rem;
  }
  
  .site-logo h1 {
    font-size: 1.25rem;
  }
  
  .site-logo .logo-highlight {
    padding: 0.25rem 0.5rem;
  }
  
  .mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .header-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .cart-badge .badge-count {
    font-size: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .hero-section {
    padding: 1.5rem 1rem;
  }
  
  .hero-grid {
    gap: 1rem;
  }
  
  .hero-main {
    min-height: 400px;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-side-banner {
    min-height: 180px;
  }
  
  .hero-side-banner .content {
    padding: 1.25rem;
  }
  
  .hero-side-banner .badge {
    font-size: 0.75rem;
  }
  
  .hero-side-banner h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-side-banner .link {
    font-size: 0.875rem;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-input {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  
  .newsletter-button {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 0.625rem 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .hero-main {
    min-height: 480px;
  }
  
  .hero-content {
    padding: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .category-card {
    min-height: 140px;
  }
  
  .category-card h3 {
    font-size: 1rem;
  }
  
  .newsletter-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .newsletter-form {
    width: auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-logo {
    grid-column: span 3;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .header-icons {
    gap: 1rem;
  }
  
  .hero-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .hero-main {
    min-height: 520px;
  }
  
  .hero-content {
    padding: 3rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-side-banners {
    grid-template-columns: 1fr;
  }
  
  .hero-side-banner .content {
    padding: 1.5rem;
  }
  
  .hero-side-banner h3 {
    font-size: 1.25rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .footer-logo {
    grid-column: span 1;
  }
  
  .newsletter-form {
    width: 20rem;
  }
}

/* Extra large devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
  .main-nav {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .newsletter-form {
    width: 24rem;
  }
}

/* Extra extra large devices (1536px and up) */
@media (min-width: 1536px) {
  .hero-title {
    font-size: 6rem;
  }
}

/* ============================================
   WORDPRESS SPECIFIC STYLES
   ============================================ */
.wp-block-image img {
  height: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
