@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Oswald:wght@400;600;700&family=Inter:wght@400;500&display=swap");
:root {
  scroll-behavior: auto;
  --text-main: #252a2f;
  --text-sub: #555555;
  --bg-page: #ffffff;
  --bg-secondary: #f0f0f0;
  --border: #e8e8e8;
  --accent: #0f367f;
  --header-bg: #292d30;
  --header-text: #ffffff;
  --color-accent: #0f367f;
  --color-accent-hover: #0a265a;
  --color-primary: #0f367f;
  --color-secondary: #6c757d;
  --color-success: #198754;
  --color-info: #0dcaf0;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #111827;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-secondary: #f9fafb;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --text-primary: #000;
  --announcement-height: 38px;
  --header-height: 80px;
  --heading-font-weight: 500;
  --heading-font-style: normal;
  --heading-text-transform: uppercase;
  --heading-letter-spacing: 0.2em;
  --text-font-weight: 400;
  --text-font-style: normal;
  --text-letter-spacing: 0.15em;
  --button-text-transform: uppercase;
  --button-letter-spacing: 0.2em;
  /* Font sizes */
  --text-heading-size-factor: 1;
  --text-h1: max(
    0.6875rem,
    clamp(1.375rem, 1.146341463414634rem + 0.975609756097561vw, 2rem) *
      var(--text-heading-size-factor)
  );
  --text-h2: max(
    0.6875rem,
    clamp(1.25rem, 1.0670731707317074rem + 0.7804878048780488vw, 1.75rem) *
      var(--text-heading-size-factor)
  );
  --text-h3: max(
    0.6875rem,
    clamp(1.125rem, 1.0335365853658536rem + 0.3902439024390244vw, 1.375rem) *
      var(--text-heading-size-factor)
  );
  --text-h4: max(
    0.6875rem,
    clamp(1rem, 0.9542682926829268rem + 0.1951219512195122vw, 1.125rem) *
      var(--text-heading-size-factor)
  );
  --text-h5: calc(0.875rem * var(--text-heading-size-factor));
  --text-h6: calc(0.75rem * var(--text-heading-size-factor));
  --text-xs: 0.6875rem;
  --text-sm: 0.75rem;
  --text-base: 0.6875rem;
  --text-lg: 0.8125rem;
  --text-xl: 0.9375rem;
}

body {
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #434343;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #0f367f;
}

a:hover {
  color: #0a265a;
}

.form-control {
  box-shadow: none !important;
  outline: none !important;
}

.bg-gray {
  background: #f5f5f5;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.breadcrumbs {
  padding: 20px 40px;
  font-size: 12px;
  text-transform: uppercase;
  background: var(--bg-secondary);
}
.breadcrumbs ol {
  margin-bottom: 0;
}

.password-form input {
  border-color: #dee2e6 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  box-shadow: none !important;
}
.password-form button {
  border-color: #dee2e6 !important;
  border-left: none;
  background: none !important;
}
.password-form.is-invalid input {
  border-color: #dc3545 !important;
}
.password-form.is-invalid button {
  border-color: #dc3545 !important;
}

.header-area {
  background: #fff;
}
.header-area .header-top {
  background: #292d30;
}
.header-area .header-top .header-links li {
  display: inline-block;
}
.header-area .header-top .header-links li a,
.header-area .header-top .header-links li .btn-link,
.header-area .header-top .header-links li .login {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 12px 15px 12px 0;
  display: block;
  text-decoration: none;
  background: none;
  border: 0;
}
.header-area .header-top .header-links li a:hover, .header-area .header-top .header-links li a:focus,
.header-area .header-top .header-links li .btn-link:hover,
.header-area .header-top .header-links li .btn-link:focus,
.header-area .header-top .header-links li .login:hover,
.header-area .header-top .header-links li .login:focus {
  color: #bcbec4;
  background: none;
}
.header-area .main-header {
  padding: 20px 0 30px;
}
.header-area .main-header .header-logo-img {
  max-height: 80px;
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.header-area .main-header .header-site-name {
  color: #292d30;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.header-area .main-header .header-tagline {
  font-size: 13px;
  color: #878a8c;
  letter-spacing: 0.05em;
}
.header-area .main-header #search {
  margin-top: 12px;
}
.header-area .main-header #search .form-control {
  border: solid #e3e3e3;
  border-width: 1px 0 1px 1px;
  color: #878a8c;
  font-size: 14px;
  box-shadow: none;
  height: 46px;
}
.header-area .main-header #search .btn-search {
  background: none;
  border: solid #e3e3e3;
  border-width: 1px 1px 1px 0;
  color: #0f367f;
  height: 46px;
}
.header-area .main-header #search .btn-search:hover {
  color: rgb(9.6126760563, 34.6056338028, 81.3873239437);
}
.header-area .main-header #cart .btn-cart {
  background: none;
  border: 0;
  padding: 0;
  margin-top: 20px;
  font-size: 14px;
  color: #252a2f;
  text-transform: uppercase;
}
.header-area .main-header #cart .btn-cart .cart-icon {
  font-size: 36px;
  margin-right: 12px;
  vertical-align: middle;
  color: #292d30;
}
.header-area .main-header #cart .btn-cart:hover .cart-icon {
  color: #0f367f;
}
.header-area .main-header #cart .btn-cart #cart-total {
  color: #fff;
  background-color: #0f367f;
  padding: 10px 20px;
  position: relative;
  font-size: 16px;
}
.header-area .main-header #cart .btn-cart #cart-total::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 12px;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #0f367f;
}
.header-area .main-header .navbar-toggle-icon {
  font-size: 22px;
  color: #292d30;
}
.header-area #main-menu {
  background: #fff;
  margin: 0;
  padding: 0;
  border: solid #c7c7c7;
  border-width: 1px 0;
}
.header-area #main-menu .nav li a,
.header-area #main-menu .nav li .nav-home {
  color: #292d30;
  text-transform: uppercase;
  padding: 10px 30px 10px 0;
  display: block;
  text-decoration: none;
  font-size: 14px;
}
.header-area #main-menu .nav li a:hover, .header-area #main-menu .nav li a:focus, .header-area #main-menu .nav li a.active,
.header-area #main-menu .nav li .nav-home:hover,
.header-area #main-menu .nav li .nav-home:focus,
.header-area #main-menu .nav li .nav-home.active {
  font-weight: 700;
  background: none;
  color: #292d30;
}
.header-area #main-menu .nav li .nav-home {
  font-size: 24px;
}
.header-area .header-mobile-nav {
  background: #292d30;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.header-area .header-mobile-nav ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header-area .header-mobile-nav ul li a:hover, .header-area .header-mobile-nav ul li a.active {
  color: #fff;
}

.footer-links {
  padding: 25px 0 40px;
  background: #f0f0f0;
  border-top: 1px solid #d2d2d2;
}
.footer-links h5 {
  text-transform: uppercase;
  color: #0f367f;
  margin-bottom: 20px;
}
.footer-links ul li {
  padding: 6px 0;
  font-size: 15px;
  border-top: 1px solid #bdbdbd;
}
.footer-links ul li:first-child {
  border-top: 0;
}
.footer-links ul li a {
  color: #212121;
  text-decoration: none;
}
.footer-links ul li a:hover {
  color: #0f0f0f;
}

.copyright {
  background: #292d30;
  padding: 18px 0 8px;
  color: #fff;
}
.copyright p {
  padding-top: 4px;
  font-size: 14px;
}
.copyright a,
.copyright a:hover {
  color: #0f367f;
}

.hero-wrap {
  background: #0a0a0a;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  font-family: "Inter", sans-serif;
}
.hero-wrap .hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #f5c300 39px, #f5c300 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #f5c300 39px, #f5c300 40px);
}
.hero-wrap .hero-left {
  padding: 72px 40px 100px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-wrap .hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5c300;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-wrap .hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #f5c300;
  flex-shrink: 0;
}
.hero-wrap .hero-headline {
  font-family: "Oswald", sans-serif;
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  color: #f0f0f0;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-wrap .hero-headline span {
  color: #f5c300;
}
.hero-wrap .hero-subheadline {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 400;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 28px 0;
}
.hero-wrap .hero-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: #8a8a8a;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 360px;
}
.hero-wrap .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-wrap .hero-btn-primary {
  background: #f5c300;
  color: #0a0a0a;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.hero-wrap .hero-btn-primary:hover {
  background: #e0b400;
  color: #0a0a0a;
}
.hero-wrap .hero-btn-ghost {
  background: transparent;
  color: #f0f0f0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-wrap .hero-btn-ghost::after {
  content: "→";
  font-size: 17px;
}
.hero-wrap .hero-btn-ghost:hover {
  opacity: 1;
  color: #f0f0f0;
}
.hero-wrap .hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-wrap .hero-tool-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 195, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-wrap .hero-badge-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 1px solid #1e1e1e;
  padding: 16px 7vw;
  display: flex;
  gap: 48px;
  z-index: 3;
  align-items: center;
}
.hero-wrap .hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-wrap .hero-badge-num {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #f5c300;
  line-height: 1;
}
.hero-wrap .hero-badge-label {
  font-size: 11px;
  color: #555;
  line-height: 1.35;
  max-width: 80px;
}
.hero-wrap .hero-badge-sep {
  width: 1px;
  height: 28px;
  background: #2a2a2a;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-wrap .hero-right {
    display: none;
  }
  .hero-wrap .hero-left {
    padding: 48px 24px 100px;
  }
  .hero-wrap .hero-badge-strip {
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 24px;
  }
}

.home-slider {
  position: relative;
  overflow: hidden;
  background: #000;
}
.home-slider .home-slider__track {
  position: relative;
  width: 100%;
}
.home-slider .home-slider__slide {
  display: none;
}
.home-slider .home-slider__slide.is-active {
  display: block;
}
.home-slider .home-slider__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.home-slider .home-slider__slide a {
  display: block;
}
.home-slider .home-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.home-slider .home-slider__arrow:hover {
  background: #0f367f;
}
.home-slider .home-slider__arrow--prev {
  left: 12px;
}
.home-slider .home-slider__arrow--next {
  right: 12px;
}
.home-slider .home-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.home-slider .home-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.home-slider .home-slider__dot.is-active {
  background: #fff;
}
@media (max-width: 767px) {
  .home-slider .home-slider__slide img {
    height: 220px;
  }
}

.homepage-main {
  padding-top: 24px;
  padding-bottom: 24px;
}

.category-navbar {
  border: 1px solid #e8e8e8;
  margin-bottom: 24px;
}
.category-navbar .category-navbar__heading {
  background: #0f367f;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 16px;
  letter-spacing: 0.05em;
}
.category-navbar .category-navbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-navbar .category-navbar__list li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #292d30;
  text-decoration: none;
  background: #f0f0f0;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.15s, color 0.15s;
}
.category-navbar .category-navbar__list li a:hover {
  background: #0f367f;
  color: #fff;
}
.category-navbar .category-navbar__list li:last-child a {
  border-bottom: 0;
}

.product-section .section-title h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #292d30;
  border-bottom: 2px solid #0f367f;
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.product-col {
  background: #f0f0f0;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.product-col .product-col__image {
  overflow: hidden;
  background: #fff;
}
.product-col .product-col__image a {
  display: block;
}
.product-col .product-col__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-col .product-col__image:hover img {
  transform: scale(1.04);
}
.product-col .product-col__body {
  padding: 12px 14px;
  flex: 1;
}
.product-col .product-col__body .product-col__brand {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-col .product-col__body .product-col__name {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #292d30;
  line-height: 1.3;
}
.product-col .product-col__body .product-col__name a {
  color: #292d30;
  text-decoration: none;
}
.product-col .product-col__body .product-col__name a:hover {
  color: #0f367f;
}
.product-col .product-col__body .product-col__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-col .product-col__body .product-col__price .price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.product-col .product-col__body .product-col__price .price-new {
  font-size: 20px;
  font-weight: 700;
  color: #0f367f;
}
.product-col .product-col__body .product-col__no-stock {
  font-size: 11px;
  color: #c00;
  margin-top: 4px;
}
.product-col .product-col__actions {
  padding: 10px 14px 14px;
}
.product-col .product-col__actions .btn-add-to-cart {
  background: #0f367f;
  color: #fff;
  border: 0;
  padding: 9px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}
.product-col .product-col__actions .btn-add-to-cart:hover:not(:disabled) {
  background: rgb(9.6126760563, 34.6056338028, 81.3873239437);
}
.product-col .product-col__actions .btn-add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1.5px solid;
  white-space: nowrap;
}

.status-pill-submitted {
  border-color: #0d6efd;
  color: #0d6efd;
}

.status-pill-paid {
  border-color: #198754;
  color: #198754;
}

.status-pill-in_progress {
  border-color: #0dcaf0;
  color: #0dcaf0;
}

.status-pill-pending_payment {
  border-color: #fd7e14;
  color: #fd7e14;
}

.status-pill-ready {
  border-color: #6f42c1;
  color: #6f42c1;
}

.status-pill-delivered {
  border-color: #6c757d;
  color: #6c757d;
}

.status-pill-cancelled {
  border-color: #dc3545;
  color: #dc3545;
}
