/*
Theme Name: WIERD.ASSET
Theme URI: https://wierd.asset
Author: WIERD.ASSET
Description: Custom child theme for WIERD.ASSET streetwear brand. Black, brutal, beautiful.
Template: twentytwentyone
Version: 4.7
Text Domain: wierd-asset
Tags: streetwear, dark, custom
*/

/* =========================================================
   WIERD.ASSET — Child Theme
   Based on Twenty Twenty-One
   Design: Black. Brutal. Beautiful.
   ========================================================= */

/* ===== IMPORT FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --wa-black:   #000000;
  --wa-white:   #E1E1E1;
  --wa-red:     #FF1A1A;
  --wa-dim:     #1a1a1a;
  --wa-mid:     #333333;
  --wa-font-display: 'Bebas Neue', sans-serif;
  --wa-font-body:    'Courier Prime', monospace;

  /* Override TT21 variables */
  --global--color-background:  #000000;
  --global--color-primary:     #E1E1E1;
  --global--color-secondary:   #E1E1E1;
  --global--color-border:      #333333;
  --global--font-primary:      'Courier Prime', monospace;
  --global--font-secondary:    'Courier Prime', monospace;
  --global--font-size-base:    1rem;
  --global--line-height-body:  1.6;
  --heading--font-family:      'Bebas Neue', sans-serif;
  --heading--font-weight:      400;
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--wa-black) !important;
  color: var(--wa-white) !important;
  font-family: var(--wa-font-body) !important;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--wa-red);
  color: var(--wa-black);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--wa-black); }
::-webkit-scrollbar-thumb { background: var(--wa-red); }

/* ===== LINKS ===== */
a {
  color: var(--wa-white);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--wa-red);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wa-font-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em;
  color: var(--wa-white) !important;
  line-height: 1.0;
}

p {
  font-family: var(--wa-font-body);
  color: var(--wa-white);
  opacity: 0.8;
}

/* ===== SITE LAYOUT ===== */
#page.site {
  background: var(--wa-black);
}

.site-content {
  background: var(--wa-black);
}

/* ===== HEADER / NAV ===== */
#masthead.site-header {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wa-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

/* Site branding */
.site-branding {
  padding: 18px 40px;
}

.site-title {
  font-family: var(--wa-font-display) !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 !important;
  line-height: 1;
}

.site-title a {
  color: var(--wa-white) !important;
  text-decoration: none !important;
}

.site-title a::after {
  content: '.';
  color: var(--wa-red);
}

.site-description {
  font-family: var(--wa-font-body) !important;
  font-size: 0.55rem !important;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wa-red) !important;
  opacity: 1 !important;
  margin: 4px 0 0 0;
}

/* Primary navigation */
#site-navigation.primary-navigation {
  background: transparent !important;
  border: none !important;
  display: flex;
  align-items: center;
}

.primary-navigation .menu-button-container {
  display: none;
}

.primary-navigation .primary-menu-container {
  display: block !important;
  background: transparent !important;
}

.primary-navigation ul.menu-wrapper {
  display: flex !important;
  flex-direction: row !important;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent !important;
  border: none !important;
}

.primary-navigation ul.menu-wrapper li {
  background: transparent !important;
  border: none !important;
}

.primary-navigation ul.menu-wrapper a {
  display: block;
  padding: 8px 20px;
  font-family: var(--wa-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.6) !important;
  text-decoration: none !important;
  transition: color 0.2s;
  background: transparent !important;
  border: none !important;
}

.primary-navigation ul.menu-wrapper a:hover,
.primary-navigation ul.menu-wrapper .current-menu-item > a {
  color: var(--wa-red) !important;
  background: transparent !important;
}

/* Hide TT21 mobile menu button — we handle via JS */
#primary-mobile-menu {
  display: none !important;
}

/* Full header layout */
#masthead.site-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Hamburger button */
.wa-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 20px;
  z-index: 200;
}
.wa-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wa-white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.wa-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.wa-hamburger.open span:nth-child(2) { opacity: 0; }
.wa-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== MAIN CONTENT ===== */
main#main.site-main {
  background: var(--wa-black);
  min-height: 60vh;
}

.entry-content,
.entry-header,
.entry-summary,
.entry-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ===== POSTS / ARCHIVE ===== */
.post,
.page,
article.hentry {
  background: var(--wa-black);
  border-bottom: 1px solid var(--wa-mid);
  padding: 60px 0;
}

/* Entry header */
.entry-header .entry-title {
  font-family: var(--wa-font-display) !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  color: var(--wa-white) !important;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.entry-header .entry-title a {
  color: var(--wa-white) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.entry-header .entry-title a:hover {
  color: var(--wa-red) !important;
}

/* Post meta */
.entry-meta,
.post-meta,
.posted-on,
.byline {
  font-family: var(--wa-font-body);
  font-size: 0.6rem !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.4) !important;
}

.entry-meta a,
.posted-on a,
.byline a {
  color: rgba(225, 225, 225, 0.4) !important;
}

.entry-meta a:hover,
.posted-on a:hover,
.byline a:hover {
  color: var(--wa-red) !important;
}

/* Entry content typography */
.entry-content p {
  font-family: var(--wa-font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(225, 225, 225, 0.75);
  margin-bottom: 1.5em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: var(--wa-font-display) !important;
  color: var(--wa-white) !important;
  margin: 1.5em 0 0.5em;
}

.entry-content a {
  color: var(--wa-red) !important;
  border-bottom: 1px solid rgba(255, 26, 26, 0.3);
  transition: border-color 0.2s;
}

.entry-content a:hover {
  border-bottom-color: var(--wa-red);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  color: rgba(225, 225, 225, 0.75);
}

.entry-content blockquote {
  border-left: 3px solid var(--wa-red);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--wa-dim);
  font-style: italic;
  color: rgba(225, 225, 225, 0.6);
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--wa-mid);
  margin: 40px 0;
}

/* Code */
.entry-content code,
.entry-content pre {
  font-family: var(--wa-font-body);
  background: var(--wa-dim);
  color: var(--wa-red);
  border: 1px solid var(--wa-mid);
  padding: 2px 8px;
  font-size: 0.9em;
}

.entry-content pre {
  padding: 20px;
  overflow-x: auto;
  display: block;
}

/* ===== FEATURED IMAGE ===== */
.post-thumbnail,
.entry-content .wp-post-image {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.9);
  transition: filter 0.3s;
  margin-bottom: 30px;
}

.post-thumbnail:hover,
.entry-content .wp-post-image:hover {
  filter: contrast(1.2) brightness(1) saturate(0.6);
}

/* ===== BUTTONS ===== */
.wp-block-button .wp-block-button__link,
button,
input[type="submit"],
.btn {
  font-family: var(--wa-font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--wa-white);
  background: transparent;
  color: var(--wa-white) !important;
  cursor: crosshair;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.wp-block-button .wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--wa-red) !important;
  border-color: var(--wa-red) !important;
  color: var(--wa-black) !important;
}

/* Primary button style */
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--wa-red) !important;
  border-color: var(--wa-red) !important;
  color: var(--wa-black) !important;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: transparent !important;
  color: var(--wa-red) !important;
}

/* ===== FORMS ===== */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea,
select {
  background: var(--wa-dim) !important;
  border: 1px solid var(--wa-mid) !important;
  color: var(--wa-white) !important;
  font-family: var(--wa-font-body) !important;
  font-size: 0.85rem !important;
  padding: 12px 16px !important;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: var(--wa-red) !important;
  box-shadow: none !important;
}

/* Comment form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  background: var(--wa-dim) !important;
  border: 1px solid var(--wa-mid) !important;
  color: var(--wa-white) !important;
}

/* ===== COMMENTS ===== */
#comments {
  background: var(--wa-black);
  border-top: 1px solid var(--wa-mid);
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.comments-title {
  font-family: var(--wa-font-display) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  color: var(--wa-white) !important;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.comment-author .fn {
  font-family: var(--wa-font-display) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.05em;
  color: var(--wa-white) !important;
}

.comment-content {
  color: rgba(225, 225, 225, 0.75);
  font-family: var(--wa-font-body);
}

.comment-body {
  border-bottom: 1px solid var(--wa-mid);
  padding: 30px 0;
}

/* ===== SIDEBAR / WIDGETS ===== */
.widget-area,
aside {
  background: var(--wa-black);
}

.widget-title {
  font-family: var(--wa-font-display) !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.1em;
  color: var(--wa-white) !important;
  border-bottom: 1px solid var(--wa-red);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.widget ul li {
  border-bottom: 1px solid var(--wa-mid);
  padding: 8px 0;
  font-family: var(--wa-font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(225, 225, 225, 0.6);
}

.widget ul li a {
  color: rgba(225, 225, 225, 0.6) !important;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  transition: color 0.2s;
}

.widget ul li a:hover {
  color: var(--wa-red) !important;
}

/* ===== PAGINATION ===== */
.pagination,
.nav-links,
.posts-navigation,
.post-navigation {
  padding: 40px;
  border-top: 1px solid var(--wa-mid);
}

.page-numbers,
.nav-previous a,
.nav-next a {
  font-family: var(--wa-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.5) !important;
  border: 1px solid var(--wa-mid);
  padding: 8px 16px;
  transition: all 0.2s;
  text-decoration: none !important;
}

.page-numbers:hover,
.nav-previous a:hover,
.nav-next a:hover,
.page-numbers.current {
  background: var(--wa-red) !important;
  border-color: var(--wa-red) !important;
  color: var(--wa-black) !important;
}

/* ===== CATEGORY / TAG BADGES ===== */
.cat-links a,
.tags-links a,
.entry-footer a {
  font-family: var(--wa-font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wa-red) !important;
  border: 1px solid var(--wa-red);
  padding: 3px 10px;
  margin-right: 6px;
  transition: all 0.2s;
  text-decoration: none !important;
}

.cat-links a:hover,
.tags-links a:hover {
  background: var(--wa-red) !important;
  color: var(--wa-black) !important;
}

/* ===== ARCHIVE HEADER ===== */
.page-header {
  padding: 80px 40px 40px;
  border-bottom: 1px solid var(--wa-mid);
}

.page-title {
  font-family: var(--wa-font-display) !important;
  font-size: clamp(3rem, 8vw, 7rem) !important;
  color: var(--wa-white) !important;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.archive-description {
  font-family: var(--wa-font-body);
  font-size: 0.85rem;
  color: rgba(225, 225, 225, 0.5);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ===== 404 ===== */
.error-404 .page-title::before {
  display: block;
  content: '404';
  font-family: var(--wa-font-display);
  font-size: clamp(8rem, 25vw, 20rem);
  color: var(--wa-dim);
  line-height: 0.8;
  pointer-events: none;
}

.error-404 .page-content p {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.4);
}

/* ===== SEARCH ===== */
.search-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--wa-mid);
  max-width: 600px;
}

.search-field {
  flex: 1;
  border: none !important;
  background: var(--wa-dim) !important;
}

.search-submit {
  background: var(--wa-red) !important;
  border: none !important;
  color: var(--wa-black) !important;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0 20px;
  cursor: crosshair;
}

/* ===== WP BLOCKS DARK OVERRIDES ===== */

/* Cover block */
.wp-block-cover {
  background-color: var(--wa-black) !important;
}

/* Separator */
.wp-block-separator {
  border-color: var(--wa-mid) !important;
}

/* Quote */
.wp-block-quote {
  border-left: 3px solid var(--wa-red) !important;
  background: var(--wa-dim);
  padding: 20px 30px;
}

.wp-block-quote cite,
.wp-block-quote footer {
  color: rgba(225, 225, 225, 0.4) !important;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

/* Pullquote */
.wp-block-pullquote {
  border-top: 3px solid var(--wa-red) !important;
  border-bottom: 3px solid var(--wa-red) !important;
  background: var(--wa-dim);
  padding: 40px;
}

.wp-block-pullquote blockquote p {
  font-family: var(--wa-font-display) !important;
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
  color: var(--wa-white) !important;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* Table */
.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid var(--wa-mid) !important;
  padding: 12px 16px;
  font-family: var(--wa-font-body);
  font-size: 0.8rem;
  color: rgba(225, 225, 225, 0.8);
}

.wp-block-table th {
  background: var(--wa-dim);
  color: var(--wa-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

/* Latest posts block */
.wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.wp-block-latest-posts li {
  border-bottom: 1px solid var(--wa-mid);
  padding: 16px 0;
}

.wp-block-latest-posts li a {
  font-family: var(--wa-font-display) !important;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--wa-white) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.wp-block-latest-posts li a:hover {
  color: var(--wa-red) !important;
}

/* Gallery */
.wp-block-gallery,
.gallery {
  gap: 4px !important;
}

.wp-block-gallery .wp-block-image img {
  filter: contrast(1.05) brightness(0.9);
  transition: filter 0.3s;
}

.wp-block-gallery .wp-block-image img:hover {
  filter: contrast(1.2) saturate(0.5);
}

/* ===== FOOTER ===== */
#colophon.site-footer {
  background: var(--wa-black) !important;
  border-top: 1px solid var(--wa-mid);
  padding: 60px 40px;
  color: rgba(225, 225, 225, 0.4);
}

.footer-navigation {
  background: transparent !important;
  border: none !important;
  margin-bottom: 40px;
}

.footer-navigation-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-navigation-wrapper li {
  border: none !important;
}

.footer-navigation-wrapper a {
  font-family: var(--wa-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.4) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.footer-navigation-wrapper a:hover {
  color: var(--wa-red) !important;
}

.site-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--wa-mid);
  padding-top: 30px;
}

.site-name {
  font-family: var(--wa-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--wa-white);
}

.site-name::after {
  content: '.';
  color: var(--wa-red);
}

.powered-by,
.privacy-policy {
  font-family: var(--wa-font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(225, 225, 225, 0.25) !important;
}

.powered-by a,
.privacy-policy a {
  color: rgba(225, 225, 225, 0.4) !important;
}

.powered-by a:hover,
.privacy-policy a:hover {
  color: var(--wa-red) !important;
}

/* ===== FOOTER WIDGETS ===== */
.footer-widgets-outer-wrapper {
  background: var(--wa-dim) !important;
  border-top: 1px solid var(--wa-mid);
  padding: 60px 40px;
}

.footer-widgets-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== WooCommerce (if activated) ===== */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--wa-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(225, 225, 225, 0.4);
}

.woocommerce .product .price,
.woocommerce .product ins {
  color: var(--wa-white) !important;
  font-family: var(--wa-font-display) !important;
  font-size: 2rem !important;
}

.woocommerce .button,
.woocommerce button.button {
  background: var(--wa-red) !important;
  color: var(--wa-black) !important;
  border: none !important;
  font-family: var(--wa-font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0 !important;
  cursor: crosshair;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: transparent !important;
  color: var(--wa-red) !important;
  border: 1px solid var(--wa-red) !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* Header */
  #masthead.site-header {
    padding: 0;
  }

  .site-branding {
    padding: 16px 20px;
  }

  /* Show hamburger */
  .wa-hamburger {
    display: flex !important;
  }

  /* Mobile nav overlay */
  #site-navigation.primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 4, 4, 0.97) !important;
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
  }

  #site-navigation.primary-navigation.wa-open {
    opacity: 1;
    pointer-events: all;
  }

  .primary-navigation .menu-button-container {
    display: none !important;
  }

  .primary-navigation .primary-menu-container {
    display: block !important;
    width: 100%;
    text-align: center;
  }

  .primary-navigation ul.menu-wrapper {
    flex-direction: column !important;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .primary-navigation ul.menu-wrapper li {
    width: 100%;
    border-bottom: 1px solid var(--wa-mid) !important;
  }

  .primary-navigation ul.menu-wrapper a {
    font-size: 2rem !important;
    padding: 20px 40px !important;
    letter-spacing: 0.1em;
    color: rgba(225, 225, 225, 0.7) !important;
  }

  /* Content */
  .entry-content,
  .entry-header,
  .entry-summary,
  .entry-footer,
  #comments,
  .page-header {
    padding: 40px 20px;
  }

  .entry-header .entry-title {
    font-size: clamp(2rem, 10vw, 4rem) !important;
  }

  .page-title {
    font-size: clamp(2.5rem, 12vw, 5rem) !important;
  }

  /* Footer */
  #colophon.site-footer {
    padding: 40px 20px;
  }

  .site-info {
    flex-direction: column;
    text-align: center;
  }

  .footer-navigation-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-widgets-outer-wrapper {
    padding: 40px 20px;
  }
}

@media (max-width: 900px) {
  .primary-navigation ul.menu-wrapper {
    gap: 0;
  }
  .primary-navigation ul.menu-wrapper a {
    font-size: 0.55rem !important;
    padding: 8px 14px !important;
  }
}
