:root {
  --akira-orange: #f5930a;
  --akira-orange-dark: #d97b00;
  --akira-black: #0d0d0d;
  --akira-dark: #171717;
  --akira-dark-2: #202020;
  --akira-dark-3: #262626;
  --akira-border: rgba(245, 147, 10, 0.16);
  --akira-border-soft: rgba(255, 255, 255, 0.08);
  --akira-white: #ffffff;
  --akira-gray: #8f8f8f;
  --akira-text: #d0d0d0;
  --akira-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body.theme-akira {
  font-family: 'Montserrat', sans-serif;
  background: var(--akira-black);
  color: var(--akira-white);
  padding-top: 160px;
}

@media (max-width: 991px) {
  body.theme-akira {
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  body.theme-akira {
    padding-top: 176px;
  }
}

body.theme-akira a {
  color: var(--akira-orange);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

body.theme-akira a:hover,
body.theme-akira a:focus {
  color: #ffb246;
  text-decoration: none;
}

body.theme-akira .container {
  width: auto;
  max-width: 1200px;
}

body.theme-akira .btn {
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s ease;
}

body.theme-akira .btn-primary,
body.theme-akira .btn-danger,
body.theme-akira .btn-info {
  background: var(--akira-orange);
  border-color: var(--akira-orange);
  color: #121212;
}

body.theme-akira .btn-primary:hover,
body.theme-akira .btn-danger:hover,
body.theme-akira .btn-info:hover,
body.theme-akira .btn-primary:focus,
body.theme-akira .btn-danger:focus,
body.theme-akira .btn-info:focus {
  background: var(--akira-orange-dark);
  border-color: var(--akira-orange-dark);
  color: #121212;
}

body.theme-akira .btn-default,
body.theme-akira .btn-secondary,
body.theme-akira .btn-link {
  background: transparent;
  border-color: rgba(255,255,255,.22);
  color: var(--akira-white);
}

body.theme-akira .btn-default:hover,
body.theme-akira .btn-default:focus,
body.theme-akira .btn-link:hover,
body.theme-akira .btn-link:focus {
  border-color: var(--akira-orange);
  color: var(--akira-orange);
}

body.theme-akira .form-control,
body.theme-akira select,
body.theme-akira textarea {
  background: #141414;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--akira-white);
  box-shadow: none;
  border-radius: 6px;
  min-height: 42px;
}

body.theme-akira .form-control:focus,
body.theme-akira select:focus,
body.theme-akira textarea:focus {
  border-color: rgba(245,147,10,.6);
  box-shadow: 0 0 0 3px rgba(245,147,10,.12);
}

body.theme-akira .input-group-btn > .btn {
  min-height: 42px;
}

body.theme-akira .breadcrumb,
body.theme-akira .pagination > li > a,
body.theme-akira .pagination > li > span,
body.theme-akira .panel,
body.theme-akira .well,
body.theme-akira .table-bordered,
body.theme-akira .list-group-item,
body.theme-akira .alert,
body.theme-akira .dropdown-menu,
body.theme-akira .nav-tabs,
body.theme-akira .nav-tabs > li > a,
body.theme-akira .thumbnail {
  background: var(--akira-dark);
  border-color: var(--akira-border-soft);
  color: var(--akira-text);
}

body.theme-akira .breadcrumb {
  margin-top: 25px;
  border-radius: 10px;
}

body.theme-akira .breadcrumb > li + li:before,
body.theme-akira .breadcrumb > .active {
  color: var(--akira-gray);
}

body.theme-akira .panel-heading,
body.theme-akira .nav-tabs > li.active > a,
body.theme-akira .nav-tabs > li.active > a:hover,
body.theme-akira .nav-tabs > li.active > a:focus {
  background: var(--akira-dark-2);
  color: var(--akira-white);
  border-color: var(--akira-border-soft);
}

body.theme-akira .table > thead > tr > th,
body.theme-akira .table > tbody > tr > th,
body.theme-akira .table > tfoot > tr > th,
body.theme-akira .table > thead > tr > td,
body.theme-akira .table > tbody > tr > td,
body.theme-akira .table > tfoot > tr > td {
  border-top-color: rgba(255,255,255,.08);
}

body.theme-akira .text-danger,
body.theme-akira .required .control-label:before {
  color: #ff6b6b;
}

/* Header */
.akira-topbar,
.akira-header,
.akira-menu-wrap {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1025;
}

.akira-topbar {
  top: 0;
  background: rgba(7,7,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
}

.akira-topbar__inner,
.akira-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.akira-topbar__inner {
  min-height: 42px;
}

.akira-topbar__left,
.akira-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.akira-topbar__left span,
.akira-topbar__left a {
  color: var(--akira-gray);
}

.akira-topbar__left i {
  color: var(--akira-orange);
  margin-right: 6px;
}

.akira-topbar__widget > form,
.akira-topbar__widget > div,
.akira-topbar__widget #form-currency,
.akira-topbar__widget #form-language {
  margin: 0;
}

.akira-topbar__widget .btn-link,
.akira-topbar__widget button {
  color: var(--akira-text);
  text-transform: none;
  padding: 0;
  border: 0;
  min-height: auto;
}

.akira-header {
  top: 42px;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--akira-border);
}

.akira-header__inner {
  min-height: 82px;
}

.akira-logo {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.akira-logo img {
  max-height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(245,147,10,.26));
}

.akira-logo__text,
.akira-footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 4px;
  color: var(--akira-orange);
}

.akira-search-wrap {
  flex: 1 1 auto;
  max-width: 560px;
}

.akira-search-wrap #search {
  margin: 0;
}

.akira-search-wrap #search input {
  background: #121212;
  border: 1px solid rgba(255,255,255,.11);
  color: var(--akira-white);
  height: 46px;
  border-radius: 6px 0 0 6px;
}

.akira-search-wrap #search .btn-lg {
  height: 46px;
  border-radius: 0 6px 6px 0;
  padding: 0 18px;
}

.akira-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.akira-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  color: var(--akira-white) !important;
  background: rgba(255,255,255,.02);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.akira-action:hover {
  border-color: rgba(245,147,10,.46);
  color: var(--akira-orange) !important;
  transform: translateY(-1px);
}

.akira-action--primary {
  background: var(--akira-orange);
  color: #121212 !important;
  border-color: var(--akira-orange);
}

.akira-action--primary:hover {
  background: var(--akira-orange-dark);
  border-color: var(--akira-orange-dark);
  color: #121212 !important;
}

.akira-menu-wrap {
  top: 124px;
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.akira-menu-wrap #menu {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  min-height: 34px;
}

.akira-menu-wrap #menu .navbar-collapse {
  padding: 0;
}

.akira-menu-wrap #menu .nav > li > a,
.akira-menu-wrap #menu .dropdown-inner a,
.akira-menu-wrap #menu .see-all {
  color: var(--akira-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.akira-menu-wrap #menu .nav > li > a {
  padding: 16px 18px;
}

.akira-menu-wrap #menu .nav > li > a:hover,
.akira-menu-wrap #menu .nav > li.open > a,
.akira-menu-wrap #menu .dropdown-inner a:hover,
.akira-menu-wrap #menu .see-all:hover {
  background: transparent;
  color: var(--akira-orange);
}

.akira-menu-wrap #menu .dropdown-menu {
  background: rgba(20,20,20,.98);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--akira-shadow);
}

.akira-cart-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1030;
}

.akira-cart-float #cart > .btn {
  background: var(--akira-orange);
  border: 0;
  color: #121212;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(245,147,10,.24);
}

.akira-cart-float #cart .dropdown-menu {
  min-width: 320px;
  right: 0;
  left: auto;
  padding: 15px;
}

/* Home */
.akira-home-page {
  overflow: hidden;
}

.akira-hero {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(245,147,10,.12) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 80%, rgba(245,147,10,.08) 0%, transparent 48%),
    var(--akira-black);
}

.akira-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,147,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,147,10,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: akira-grid 20s linear infinite;
}

@keyframes akira-grid {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.akira-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 15px 80px;
}

.akira-hero__badge,
.akira-section__label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 18px;
  border-radius: 30px;
  background: rgba(245,147,10,.12);
  border: 1px solid rgba(245,147,10,.33);
  color: var(--akira-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.akira-hero__title,
.akira-section__title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  line-height: .95;
  margin: 0 0 16px;
}

.akira-hero__title {
  font-size: clamp(68px, 14vw, 150px);
}

.akira-hero__title span,
.akira-section__title span {
  color: var(--akira-orange);
}

.akira-hero__subtitle,
.akira-section__desc {
  color: var(--akira-text);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

.akira-hero__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.akira-hero__tags span {
  padding: 9px 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--akira-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.akira-hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.akira-hero__buttons .btn {
  padding: 16px 34px;
}

.akira-hero__scroll {
  margin-top: 52px;
  color: var(--akira-gray);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.akira-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.akira-section--dark {
  background: var(--akira-dark);
}

.akira-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.akira-section__title {
  font-size: clamp(38px, 5.6vw, 72px);
}

.akira-about {
  display: flex;
  align-items: center;
}

.akira-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.akira-stat,
.akira-card,
.product-thumb,
body.theme-akira .list-group-item,
body.theme-akira .well,
body.theme-akira .panel,
body.theme-akira .table-bordered,
body.theme-akira .thumbnail,
body.theme-akira .option,
body.theme-akira .checkout-content,
body.theme-akira .product-layout .product-thumb {
  background: var(--akira-dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: none;
}

.akira-stat {
  padding: 22px;
}

.akira-stat strong {
  display: block;
  color: var(--akira-orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 400;
}

.akira-stat span {
  display: block;
  margin-top: 6px;
  color: var(--akira-gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.akira-about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.akira-about__ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(245,147,10,.18);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: akira-spin 30s linear infinite;
}

.akira-about__ring:before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(245,147,10,.14);
}

.akira-about__ring span {
  font-size: 78px;
  animation: akira-spin 30s linear infinite reverse;
}

@keyframes akira-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.akira-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.akira-card {
  display: block;
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  color: var(--akira-white);
  text-decoration: none !important;
  cursor: pointer;
}

.akira-card:focus,
.akira-card:hover {
  color: var(--akira-white);
  text-decoration: none !important;
}

.akira-card:hover,
.product-thumb:hover {
  transform: translateY(-5px);
  border-color: rgba(245,147,10,.34);
  box-shadow: 0 18px 40px rgba(245,147,10,.08);
}

.akira-card--highlight {
  background: linear-gradient(135deg, rgba(245,147,10,.16), rgba(245,147,10,.04));
  border-color: rgba(245,147,10,.26);
}

.akira-card__icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.akira-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.akira-card__text {
  color: var(--akira-gray);
  font-size: 13px;
  line-height: 1.7;
}

.akira-hours-table {
  margin-top: 25px;
}

.akira-hours-table tr td {
  padding: 15px 0 !important;
  border-color: rgba(255,255,255,.08) !important;
}

.akira-hours-table tr td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--akira-white);
}

.akira-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 25px;
}

.akira-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 18px 20px;
  background: var(--akira-dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: var(--akira-white) !important;
}

.akira-contact-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: rgba(245,147,10,.12);
  border: 1px solid rgba(245,147,10,.24);
  color: var(--akira-orange);
}

.akira-contact-card:hover {
  border-color: rgba(245,147,10,.34);
  color: var(--akira-orange) !important;
}

.akira-home-layout {
  padding: 55px 0 90px;
}

.akira-home-layout .module-title,
.akira-home-layout h3,
.product-thumb h4,
.product-thumb h4 a {
  color: var(--akira-white);
}

/* Product lists and generic store pages */
body.theme-akira #content h1,
body.theme-akira #content h2,
body.theme-akira #content h3,
body.theme-akira #content h4,
body.theme-akira legend {
  color: var(--akira-white);
}

.product-thumb {
  padding: 18px;
}

.product-thumb .image {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-thumb .caption {
  min-height: 0;
}

.product-thumb .caption p,
.product-list .product-thumb .caption p,
body.theme-akira p,
body.theme-akira label,
body.theme-akira .help-block,
body.theme-akira .radio,
body.theme-akira .checkbox,
body.theme-akira .text-muted {
  color: var(--akira-text);
}

.product-thumb .price,
.product-thumb .price-new,
.product-thumb .price-tax {
  color: var(--akira-orange);
}

.product-thumb .button-group {
  border-top: 1px solid rgba(255,255,255,.08);
  background: transparent;
  margin-top: 12px;
  padding-top: 12px;
}

.product-thumb .button-group button {
  background: transparent;
  color: var(--akira-white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  margin-right: 8px;
  min-width: 42px;
}

.product-thumb .button-group button:hover {
  background: rgba(245,147,10,.08);
  border-color: rgba(245,147,10,.35);
  color: var(--akira-orange);
}

body.theme-akira .category-description,
body.theme-akira .manufacturer-description,
body.theme-akira .product-info,
body.theme-akira .tab-content,
body.theme-akira .product-thumb,
body.theme-akira .content,
body.theme-akira .checkout-content,
body.theme-akira .table-responsive,
body.theme-akira .product-layout,
body.theme-akira .account-login .well,
body.theme-akira .account-register .well,
body.theme-akira .checkout-cart .table-responsive {
  color: var(--akira-text);
}

body.theme-akira .nav.nav-tabs > li > a {
  color: var(--akira-text);
}

body.theme-akira .nav.nav-tabs > li > a:hover {
  background: var(--akira-dark-2);
  color: var(--akira-orange);
}

body.theme-akira .pagination > .active > a,
body.theme-akira .pagination > .active > span,
body.theme-akira .pagination > .active > a:hover,
body.theme-akira .pagination > .active > span:hover,
body.theme-akira .pagination > .active > a:focus,
body.theme-akira .pagination > .active > span:focus {
  background: var(--akira-orange);
  border-color: var(--akira-orange);
  color: #121212;
}

body.theme-akira .pagination > li > a:hover,
body.theme-akira .pagination > li > span:hover {
  color: var(--akira-orange);
}

body.theme-akira .fa-stack,
body.theme-akira .rating .fa-star,
body.theme-akira .rating .fa-star-o {
  color: var(--akira-orange);
}

/* Footer */
.akira-footer {
  background: var(--akira-dark-2);
  border-top: 1px solid var(--akira-border);
  padding-top: 55px;
}

.akira-footer__brand,
.akira-footer h5 {
  margin-bottom: 18px;
}

.akira-footer h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 24px;
  color: var(--akira-white);
}

.akira-footer__text {
  color: var(--akira-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.akira-footer__cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  background: rgba(245,147,10,.12);
  border: 1px solid rgba(245,147,10,.30);
  color: var(--akira-orange) !important;
  font-weight: 700;
}

.akira-footer__list li {
  margin-bottom: 10px;
}

.akira-footer__list a {
  color: var(--akira-text);
}

.akira-footer__list a:hover {
  color: var(--akira-orange);
}

.akira-footer__bottom {
  margin-top: 35px;
  padding: 18px 0 25px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.akira-footer__powered {
  color: var(--akira-gray);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1199px) {
  .akira-actions span.hidden-sm.hidden-xs {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .akira-topbar__inner,
  .akira-header__inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .akira-topbar__right,
  .akira-actions {
    justify-content: flex-start;
  }

  .akira-search-wrap {
    max-width: none;
    width: 100%;
  }

  .akira-menu-wrap {
    top: 154px;
  }

  .akira-about__visual {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .akira-topbar__left,
  .akira-topbar__right,
  .akira-actions,
  .akira-hero__buttons,
  .akira-contact-cards {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .akira-header__inner {
    gap: 12px;
  }

  .akira-logo {
    justify-content: center;
  }

  .akira-menu-wrap {
    top: 144px;
  }

  .akira-menu-wrap #menu .navbar-header {
    float: none;
  }

  .akira-menu-wrap #menu .btn-navbar {
    margin: 8px 0 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--akira-white);
  }

  .akira-section {
    padding: 75px 0;
  }

  .akira-stats,
  .akira-contact-cards {
    grid-template-columns: 1fr;
  }

  .akira-cart-float {
    right: 15px;
    bottom: 15px;
  }

  .akira-cart-float #cart > .btn {
    padding: 10px 14px;
  }
}
