/* General */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.hidden {
  display: none !important;
}

.page_container {
  margin-top: 2rem;
  padding: 0 1rem;
}

@font-face {
  font-family: 'StateFaceRegular';
  src: url('/assets/css/stateface/webfonts/stateface-regular-webfont.eot');
  src: url('/assets/css/stateface/webfonts/stateface-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.woff') format('woff'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.ttf') format('truetype'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.svg#StateFaceRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

.stateface-replace {
    text-indent: -999em;
    display: inline-block;
    position: relative;
    min-width: 1em;
    top: 3px;
    font-size: 13pt;
}


/* Homepage Hero */

.hero {
  background: url('/assets/img/background.png') center center / cover no-repeat;
  width: 100%;
  height: auto;
  padding-top: 3rem;
  margin-bottom: -75px;
}
.hero_content {
  transform: translateY(-75px);
}
.hero .logo {
  width: 160px;
  margin: 190px auto 0.5rem;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.6rem;
  font-weight: bold;
  margin: 0.4rem 0 0.25rem;
  line-height: 4rem;
}
.hero .subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;  
  font-style: italic;
  font-size: 0.95rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  color:  #DDDDDD;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}
.hero .subtitle span {
  display: block;
}


/* Homepage Nav Buttons */

.nav-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #a0895a;
  border-radius: 10px;
  padding: .3rem .3rem .3rem .8rem;
  margin: 0.5rem 0;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  text-decoration: none;
  min-height:  49px;
}
.nav-button:hover {
  background-color: #1a1a1a;
}
.nav-button img.icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Homepage Social Icons */
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons a {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
}
.social-icons a:hover {
  opacity: 1;
}


/* Fight Card */

.fight_card_card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 20px auto;
}

.fight_card_bar {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fight_card_bar.win {
  background-color: #2d5237; 
  color:  #43e07f;
}

.fight_card_bar.loss {
  background-color: #5e2b2b;
  color:  #ff7e7e;
}

.fight_card_bar.win .fight_card_outcome,
.fight_card_bar.loss .fight_card_outcome {
  
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.4);
}
.fight_card_main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fight_card_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fight_card_event {
  font-size: 20px;
  color: #444444;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
}

.fight_card_opponent {
  display: flex;
  align-items: flex-end;
  margin-top: 6px;
  gap: 4px;
} 

.fight_card_vs_icon {
  width: 18px;
  height: auto;
  margin-right: 2px;
  position: relative;
  top: -13px;
}

.fight_card_name {
  font-size: 32px;
  font-weight: 800;
  color: #111;
}

.fight_card_result {
  font-size: 14px;
  margin-top: 0px;
  color: #444444;
  text-align: left;
}

.fight_card_date_badge {
  background: #1f1f1f;
  border: 1px solid #a0895a;
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  font-weight: bold;
  color: #a0895a;
  min-width: 60px;
}

.fight_card_month,
.fight_card_year {
  font-size: 14px;
  color: #a0895a;
}

.fight_card_day {
  font-size: 28px;
  color: #ffffff;
  font-weight: 700;
}

.fight_card_year {
  font-size: 14px;
  font-weight: 400;
  color: #a0895a;
}

.fight_card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.fight_card_video_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fight_card_video_buttons a {
  display: block;
  background: #f2f2f2;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #555;
}

.fight_card_youtube {
  color: #FF0000;
  font-size: 25px;
  margin-right: 5px;
}

.fight_card_footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.fight_card_location {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #222;
}

.fight_card_pin {
  width: 14px;
  margin-right: 6px;
}


/* Fight Profile */

.fight_profile_card {
  position: relative;
  max-width: 700px;
  background: #121212;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  border-radius: 12px;
  padding: 20px;
  margin: auto;
  margin-bottom:  25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.fight_profile_top {
  display: flex;
  align-items: center;
}

.fight_profile_image {
  width: 139px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 16px;
}

.fight_profile_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fight_profile_name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-align: left;
  line-height: 39px;
}

.fight_profile_style {
  color: #a0895a;
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
  text-align: left;
}

.fight_profile_details {
  margin-top: 16px;
  font-size: 14px;
}

.fight_profile_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 6px 0;
}

.fight_profile_flag {
  width: 16px;
  height: auto;
}

.fight_profile_location,
.fight_profile_htwt,
.fight_profile_label,
.fight_profile_value,
.fight_profile_team {
  font-size: 14px;
}

.fight_profile_label {
  color: #888;
  font-weight: 500;
}

.fight_profile_value {
  font-weight: 600;
}

.fight_profile_team {
  font-style: italic;
}

.fight_profile_buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}


.fight_profile_buttons a {
  display: inline-block;
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}


.fight_profile_buttons a:hover {
  background-color: #1f1f1f;
}

.fight_profile_stats_title {
  color: #a0895a;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.fight_profile_stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.fight_profile_stats > div {
  flex: 1 1 18%;
  margin: 10px 0;
}

.fight_profile_stat_title {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.fight_profile_stat_value {
  font-size: 32px;
  font-weight: 700;
}

.fight_profile_stats_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.fight_profile_stats_title {
  color: #a0895a;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-top: 10px;
}

.fight_profile_line {
  flex-grow: 1;
  height: 1px;
  background-color: #333;
}

.fight_profile_record_boxes {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1;
}

.fight_profile_record_box {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.fight_profile_record_box.win {
  background-color: #2d5237;
  color: #43e07f;
}

.fight_profile_record_box.loss {
  background-color: #5e2b2b;
  color: #ff7e7e;
}

.fight_profile_record_number {
  font-size: 24px;
  line-height: 1;
}

.fight_profile_record_label {
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 1px;
}


/* Sub Page Header */

.sub_page_header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #000;
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 10;
}

.sub_page_header_logo img {
  height: 50px;
}

.sub_page_header_heartbeat {
  flex: 1;
  margin: -30px 10px 0 10px;
  height: 70px;
  overflow: visible;
}

.sub_page_header_heartbeat svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.sub_page_header_hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.sub_page_header_hamburger div {
  height: 3px;
  background-color: #aaa;
  border-radius: 2px;
}

/* Modal Styles */
.sub_page_header_nav_modal {
  position: fixed;
  inset: 0;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sub_page_header_nav_modal.open {
  transform: translateY(0);
}

.sub_page_header_modal_close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  cursor: pointer;
  color: #fff;
}

.sub_page_header_nav_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.sub_page_header_nav_links a {
  color: #a0895a;
  text-decoration: none;
  font-weight: bold;
}

.sub_page_header_nav_links a:hover {
  color: #fff;
}


/* Awards */

.awards {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #fff;
}

.awards h2 {
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #a0895a;
  margin-bottom: 1rem;
}

.awards_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: #121212;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.awards_table td {
  padding: 12px 16px;
  border-bottom: 1px solid #333;
  line-height: 1.4;
  color: #eee;
}

.awards_table tr.year td {
  background-color: #1f1f1f;
  color: #a0895a;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: left;
  border-top: 1px solid #444;
}

.awards_table iframe {
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  max-width: 100%;
}

@media (max-width: 700px) {
  .awards_table td {
    padding: 10px 12px;
  }

  .awards_table iframe {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}


/* Footer */

.footer_divider {
  border: none;
  border-top: 1px solid #444;
  margin: 3rem auto 1rem;
  width: 100%;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 1rem 2rem;
  font-size: 0.8rem;
  color: #888;
}

.footer_copy {
  margin: 0;
}

.footer_socials {
  display: flex;
  gap: 16px;
}

.footer_socials a {
  color: #a0895a;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.footer_socials a:hover {
  color: #fff;
}


/* Fight Tools */


.fight_tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  width: 100%;
}

.fight_tools_search_wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.fight_tools_search_wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
}

.fight_tools_search_wrapper .search_icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 16px;
}

.fight_tools_youtube_wrapper a {
  color: #a0895a;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.fight_tools_youtube_wrapper a:hover {
  color: #fff;
}

/* Contact Page */
.contact_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 20px;
}

.contact_form_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ccc;
}

.contact_form input,
.contact_form textarea {
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 14px;
}

.contact_submit_btn {
  background-color: #a0895a;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.contact_submit_btn:hover {
  background-color: #c8a86e;
}

.contact_intro {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  text-align: left;
}


/*YouTube Modal*/
#video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 85, 85, 0.6);
  z-index: 9999;
}

#modal-content {
  margin: 100px auto;
  background: #000;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;

  /* Inner black border */
  border: 5px solid black;
  box-sizing: border-box;
  color: white;
}

#modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

#video-iframe {
  display: none;
}

#locked-message {
  display: none;
  color: white;
  text-align: center;
  font-size: 18px;
  padding: 20px;
}


/* Mobile Figth History */
.fight_profile_record_boxes_mobile {
  display: none;
}



/* Store Listing */

  /* === AK Bang Bang Store — namespaced additions === */
:root{
  /* tweak these 3 to match your palette */
  --_store-bg: #000;              /* page background */
  --_store-text: #fff;            /* base text */
  --_store-accent: #ffd54d;       /* warm gold accent (match your highlights) */

  /* nuance colors */
  --_store-muted: rgba(255,255,255,.65);
  --_store-card: #0b0b0b;
  --_store-border: rgba(255,255,255,.08);
  --_store-border-strong: rgba(255,255,255,.14);
  --_store-shadow: 0 10px 22px rgba(0,0,0,.45);
}

._store_page{
  background: var(--_store-bg);
  color: var(--_store-text);
}

._store_container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 32px);
}

._store_hero{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border: 1px solid var(--_store-border);
  border-radius: 20px;
  padding: clamp(16px, 4vw, 28px);
  box-shadow: var(--_store-shadow);
}
._store_eyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--_store-muted);
}
._store_title{
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.1;
}
._store_sub{
  color: var(--_store-muted);
  max-width: 60ch;
}

._store_filters{
  display:flex; flex-wrap:wrap; gap:10px; 
  margin-top:18px;
}
._store_chip{
  border:1px solid var(--_store-border);
  background:#0a0a0a;
  color:var(--_store-text);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}
._store_search{
  position:relative; flex:1 1 260px;
}
._store_search input{
  width:100%;
  background:#0a0a0a;
  color:var(--_store-text);
  border:1px solid var(--_store-border);
  border-radius:12px;
  padding:12px 40px 12px 12px;
}
._store_search ._store_kbd{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  font-size:12px; color:var(--_store-muted);
}

._store_grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px){
  ._store_grid{ grid-template-columns: repeat(4, 1fr); }
}

._store_card{
  display:flex; flex-direction:column;
  background: var(--_store-card);
  border:1px solid var(--_store-border);
  border-radius:18px;
  overflow:hidden;
  transition: transform .2s ease, border-color .2s ease;
}
._store_card:hover{
  transform: translateY(-2px);
  border-color: var(--_store-border-strong);
}

._store_media{
  position:relative; aspect-ratio: 4/5; overflow:hidden;
  background:#111;
}
._store_media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1.02);
}
._store_badge{
  position:absolute; top:10px; left:10px;
  background: var(--_store-accent);
  color:#000;
  font-weight:800; font-size:10px; letter-spacing:.12em;
  padding:6px 8px; border-radius:999px; text-transform:uppercase;
}

._store_body{ padding:12px 14px 14px; display:grid; gap:6px; }
._store_name{ font-weight:700; line-height:1.2; }
._store_meta{ font-size:12px; color:var(--_store-muted); }
._store_price{ font-weight:800; color: var(--_store-accent); }

._store_ctaRow{
  display:flex; justify-content:space-between; gap:8px; margin-top:6px;
}
._store_btn{
  appearance:none; border:1px solid var(--_store-border);
  background:#0a0a0a; color:var(--_store-text);
  padding:9px 12px; font-size:12px; border-radius:12px; cursor:pointer;
}
._store_btn:hover{ border-color: var(--_store-border-strong); }
._store_btn--primary{
  background: var(--_store-accent); color:#000; border-color:transparent; font-weight:800;
}
._store_promo{
  margin-top:18px; display:grid; gap:10px;
  grid-template-columns: repeat(3, 1fr);
}
._store_promoItem{
  border:1px solid var(--_store-border);
  background:#0a0a0a; border-radius:14px; padding:10px 12px; font-size:12px;
  color:var(--_store-muted);
}
._store_promoItem b{ color:var(--_store-text); }


/* Store Detail */


/* ================= AK Bang Bang — Product Detail (namespaced) ================= */
:root{
  --_store-bg:#000;
  --_store-text:#fff;
  --_store-accent:#ffd54d;              /* adjust to your brand highlight */
  --_store-muted:rgba(255,255,255,.65);
  --_store-card:#0b0b0b;
  --_store-border:rgba(255,255,255,.10);
  --_store-border-strong:rgba(255,255,255,.20);
  --_store-shadow:0 10px 24px rgba(0,0,0,.45);
}

/* page rows */
._store_pd-row{ margin:0 auto; max-width:1180px; padding:clamp(14px,3vw,24px); color:var(--_store-text); background:var(--_store-bg); }

/* top title card (single column) */
._store_pd-titleCard{
  background:var(--_store-card); border:1px solid var(--_store-border);
  border-radius:18px; padding:clamp(16px,2.2vw,20px);
  box-shadow:var(--_store-shadow); display:grid; gap:8px;
}
._store_pd-title{ margin:0; font-weight:900; line-height:1.05; font-size:clamp(26px,3.2vw,38px); }
._store_pd-price{ font-weight:900; color:var(--_store-accent); font-size:clamp(20px,2.4vw,28px); }
._store_pd-micro{ font-size:12px; color:var(--_store-muted); }

/* middle grid: LEFT gallery, RIGHT options */
._store_pd-grid{ display:grid; gap:24px; grid-template-columns:1fr; }
@media (min-width:980px){ ._store_pd-grid{ grid-template-columns:1.1fr 0.9fr; align-items:start; } }

/* gallery (sticky left) */
._store_pd-sticky{ position:sticky; top:18px; }
._store_pd-mainImgWrap{ border:1px solid var(--_store-border); border-radius:20px; overflow:hidden; background:#0a0a0a; }
._store_pd-mainImgWrap img{ display:block; width:100%; height:auto; }
._store_pd-thumbs{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-top:10px; }
._store_pd-thumbs img{ display:block; width:100%; aspect-ratio:1 / 1; object-fit:cover; border-radius:12px; border:1px solid var(--_store-border); cursor:pointer; }

/* right column card */
._store_pd-card{
  background:var(--_store-card); border:1px solid var(--_store-border);
  border-radius:18px; padding:16px; box-shadow:var(--_store-shadow);
}
._store_pd-stack{ display:grid; gap:14px; }
._store_pd-sections{ display:grid; gap:18px; }
@media (min-width:980px){ ._store_pd-sections{ gap:22px; } }

/* options */
._store_pd-group{ display:grid; gap:6px; }
._store_pd-label{
  text-align:center; font-size:12px; text-transform:uppercase; letter-spacing:.16em;
  color:var(--_store-muted); margin-bottom:4px;
}
._store_pd-pills{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
._store_pd-pill{
  appearance:none; border:0; outline:1px solid var(--_store-border);
  background:#0b0b0b; color:var(--_store-text);
  padding:8px 12px; border-radius:12px; font-size:12px; line-height:1; cursor:pointer;
  transition:outline-color .15s ease, filter .15s ease;
}
._store_pd-pill:hover{ outline-color:var(--_store-border-strong); }
._store_pd-pill[aria-pressed="true"]{ background:var(--_store-accent); color:#000; outline:none; }
._store_pd-qtyWrap{ display:flex; justify-content:center; }
._store_pd-qty{
  width:110px; text-align:center; padding:10px 12px; border-radius:12px;
  border:1px solid var(--_store-border); background:#0b0b0b; color:var(--_store-text);
}

/* PayPal button wrapper */
._store_pd-cta ._store_pd-btnPrimary{
  width:100%; padding:14px 16px; border-radius:14px; font-weight:800; border:0;
  background:var(--_store-accent); color:#000;
}
._store_pd-cta ._store_pd-btnPrimary:hover{ filter:brightness(1.06); }

/* bottom tabs (single row, single column) */
._store_pd-tabsCard{
  background:var(--_store-card); border:1px solid var(--_store-border);
  border-radius:18px; padding:clamp(16px,2.2vw,20px); box-shadow:var(--_store-shadow);
}
._store_pd-tabs{ display:flex; gap:8px; flex-wrap:wrap; }
._store_pd-tabBtn{
  appearance:none; border:1px solid var(--_store-border); background:#0b0b0b; color:var(--_store-text);
  padding:10px 14px; border-radius:12px; font-weight:700; font-size:13px; cursor:pointer;
}
._store_pd-tabBtn[aria-selected="true"]{ background:var(--_store-accent); color:#000; border-color:transparent; }

._store_pd-panel{ margin-top:14px; }
._store_pd-panel[hidden]{ display:none; }

/* details key/values */
._store_pd-kv{ display:grid; grid-template-columns:140px 1fr; gap:8px 16px; }
@media (max-width:560px){ ._store_pd-kv{ grid-template-columns:1fr; } }
._store_pd-kv dt{ color:var(--_store-muted); font-size:12px; }
._store_pd-kv dd{ margin:0; }

/* size table */
._store_pd-table{ width:100%; border-collapse:collapse; margin-top:6px; font-size:13px; }
._store_pd-table th, ._store_pd-table td{
  border:1px solid var(--_store-border); padding:8px 10px; text-align:center;
}
._store_pd-table th{ background:#0b0b0b; color:var(--_store-text); font-weight:800; }

/* shipping callouts */
._store_pd-callouts{ display:grid; gap:12px; grid-template-columns:1fr; }
@media (min-width:720px){ ._store_pd-callouts{ grid-template-columns:repeat(3,1fr); } }
._store_pd-callout{
  border:1px solid var(--_store-border); background:#0b0b0b; border-radius:14px; padding:12px;
}
._store_pd-callout b{ color:var(--_store-text); }
._store_pd-callout ._store_pd-micro{ display:block; margin-top:4px; }

/* ==== Product Details redesign ==== */
._store_pd-description {
  display: grid;
  gap: 18px;
  line-height: 1.6;
  font-size: 15px;
  color: var(--_store-text);
}

._store_pd-description p {
  margin: 0;
  color: var(--_store-muted);
}

._store_pd-features {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

._store_pd-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0b0b0b;
  border: 1px solid var(--_store-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
}

._store_pd-features li::before {
  content: "✓";
  color: var(--_store-accent);
  font-weight: 900;
  font-size: 16px;
}


/* ===============================
   FIGHT STATS MODAL (GLOBAL)
   =============================== */

/* Overlay */
.fight_stats_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    color:  #111111;
}

/* Overlay visible */
.fight_stats_modal_overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal box */
.fight_stats_modal_box {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
    animation: fight_stats_modal_fadeIn 0.25s ease-out;
    position: relative;
}

/* Modal open animation */
@keyframes fight_stats_modal_fadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* Close button */
.fight_stats_modal_close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    transition: 0.2s ease;
}

.fight_stats_modal_close:hover {
    color: #000;
}

/* Modal Title */
.fight_stats_modal_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

/* Stats layout */
.fight_stats_modal_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.fight_stats_modal_stat_row {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 10px;
}

.fight_stats_modal_stat_label {
    font-size: 13px;
    color: #555;
}

.fight_stats_modal_stat_value {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

/* Mobile improvements */
@media (max-width: 480px) {
    .fight_stats_modal_box {
        width: 92%;
        padding: 20px;
    }
    .fight_stats_modal_stats {
        grid-template-columns: 1fr 1fr;
    }
}



/* Mobile <550px override */
@media (max-width: 549px) {
  .fight_profile_record_boxes {
    display: none !important;
  }

  .fight_profile_record_boxes_mobile {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }

  .fight_profile_record_boxes_mobile .fight_profile_record_box {
    flex: 1;
    width: 100%;
    max-width: 50%;
    height: 60px;
    text-align: center;
  }

  .fight_profile_record_number {
    font-size: 30px;
  }

  .fight_profile_record_label {
    font-size: 12px;
  }
}


