/* ==========================================================================
   Get Hosed Shop — Brand Theme
   Industrial / technical-schematic aesthetic
   ========================================================================== */

:root {
  --ghs-navy: #1B4F9C;
  --ghs-navy-deep: #0A2C57;
  --ghs-navy-darker: #071D3B;
  --ghs-charcoal: #2B2F33;
  --ghs-charcoal-deep: #1A1D20;
  --ghs-steel: #8B97A3;
  --ghs-steel-light: #D7DEE4;
  --ghs-paper: #F4F6F8;
  --ghs-hose-blue: #3F8FE0;
  --ghs-amber: #FF7A1A;
  --ghs-amber-deep: #E2620A;

  --ghs-font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --ghs-font-body: 'Archivo', system-ui, sans-serif;
  --ghs-font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --ghs-radius: 6px;
  --ghs-stripe: repeating-linear-gradient(
    -45deg,
    var(--ghs-navy) 0px,
    var(--ghs-navy) 14px,
    var(--ghs-steel-light) 14px,
    var(--ghs-steel-light) 28px
  );
}

body {
  font-family: var(--ghs-font-body);
  color: var(--ghs-charcoal);
  background-color: var(--ghs-paper);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ghs-font-display);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------------- */
/* Hazard stripe accent bar                                                 */
/* ---------------------------------------------------------------------- */
.ghs-stripe {
  height: 5px;
  background: var(--ghs-stripe);
}

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                      */
/* ---------------------------------------------------------------------- */
.ghs-topbar {
  background: var(--ghs-navy-darker);
  color: var(--ghs-steel-light);
  font-family: var(--ghs-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.ghs-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.ghs-topbar a {
  color: var(--ghs-steel-light);
  text-decoration: none;
}
.ghs-topbar a:hover {
  color: #fff;
}
.ghs-topbar .ghs-topbar-accent {
  color: var(--ghs-hose-blue);
}

.ghs-navbar {
  background: #fff;
  padding: 0.6rem 0;
  border-bottom: none;
}
.ghs-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}
.ghs-navbar .navbar-brand img {
  height: 46px;
  width: auto;
  display: block;
}
.ghs-navbar .nav-link {
  font-family: var(--ghs-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ghs-charcoal) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.ghs-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--ghs-hose-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.ghs-navbar .nav-link:hover {
  color: var(--ghs-navy) !important;
}
.ghs-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.ghs-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700 !important;
  color: var(--ghs-navy) !important;
}
.ghs-cart-link i {
  font-size: 1.2rem;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn-ghs-primary {
  background: var(--ghs-navy);
  border: 2px solid var(--ghs-navy);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: var(--ghs-radius);
  transition: all 0.15s ease;
}
.btn-ghs-primary:hover {
  background: var(--ghs-navy-deep);
  border-color: var(--ghs-navy-deep);
  color: #fff;
}

.btn-ghs-amber {
  background: var(--ghs-amber);
  border: 2px solid var(--ghs-amber);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: var(--ghs-radius);
  transition: all 0.15s ease;
}
.btn-ghs-amber:hover {
  background: var(--ghs-amber-deep);
  border-color: var(--ghs-amber-deep);
  color: #fff;
}

.btn-ghs-outline {
  background: transparent;
  border: 2px solid var(--ghs-charcoal);
  color: var(--ghs-charcoal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: var(--ghs-radius);
  transition: all 0.15s ease;
}
.btn-ghs-outline:hover {
  background: var(--ghs-charcoal);
  border-color: var(--ghs-charcoal);
  color: #fff;
}

.btn-ghs-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: var(--ghs-radius);
  transition: all 0.15s ease;
}
.btn-ghs-outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ghs-navy-deep);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.ghs-footer {
  background: var(--ghs-paper);
  border-top: 5px solid transparent;
  border-image: var(--ghs-stripe) 5;
  padding-top: 2.5rem;
}
.ghs-footer h6 {
  font-family: var(--ghs-font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--ghs-navy);
  margin-bottom: 0.9rem;
}
.ghs-footer a {
  color: var(--ghs-charcoal);
  text-decoration: none;
}
.ghs-footer a:hover {
  color: var(--ghs-navy);
  text-decoration: underline;
}
.ghs-footer img.ghs-footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
}
.ghs-footer-bottom {
  background: var(--ghs-navy-darker);
  color: var(--ghs-steel-light);
  font-family: var(--ghs-font-mono);
  font-size: 0.78rem;
  margin-top: 2rem;
  padding: 0.85rem 0;
}
.ghs-footer-bottom a {
  color: var(--ghs-hose-blue);
}

/* ---------------------------------------------------------------------- */
/* Misc shared bits                                                         */
/* ---------------------------------------------------------------------- */
.ghs-eyebrow {
  font-family: var(--ghs-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 600;
}

.ghs-full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.ghs-hero {
  background: linear-gradient(160deg, var(--ghs-navy-deep) 0%, var(--ghs-navy-darker) 100%);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  color: #fff;
}
.ghs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 48px);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
.ghs-hero::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: var(--ghs-stripe);
  opacity: 0.10;
  transform: rotate(18deg);
  pointer-events: none;
}
.ghs-hero-inner {
  position: relative;
  z-index: 1;
}
.ghs-hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  line-height: 0.98;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.ghs-hero-title .text-accent {
  color: var(--ghs-hose-blue);
}
.ghs-hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ghs-steel-light);
  max-width: 540px;
  margin-bottom: 2rem;
}
.ghs-hero-search .form-control {
  font-family: var(--ghs-font-mono);
  font-size: 0.95rem;
  border: none;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.ghs-hero-search .form-control:focus {
  box-shadow: none;
}
.ghs-hero-search .input-group-text {
  background: #fff;
  border: none;
  color: var(--ghs-navy);
  padding-left: 1.1rem;
}
.ghs-hero-search .btn {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.ghs-hero-tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ghs-steel-light);
}
.ghs-hero-tags .ghs-hero-tags-label {
  font-family: var(--ghs-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  margin-right: 0.25rem;
}
.ghs-hero-tags a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.ghs-hero-tags a:hover {
  border-color: var(--ghs-hose-blue);
  color: var(--ghs-hose-blue);
}
.ghs-hero-art {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
}

/* ---------------------------------------------------------------------- */
/* Stats strip                                                              */
/* ---------------------------------------------------------------------- */
.ghs-stats {
  background: linear-gradient(135deg, var(--ghs-steel-light) 0%, #ffffff 55%, var(--ghs-steel-light) 100%);
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(10, 44, 87, 0.08);
}
.ghs-stat {
  text-align: center;
  padding: 0 0.5rem;
}
.ghs-stat i {
  font-size: 1.6rem;
  color: var(--ghs-hose-blue);
  display: block;
  margin-bottom: 0.4rem;
}
.ghs-stat .num {
  font-family: var(--ghs-font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--ghs-navy);
  line-height: 1;
}
.ghs-stat .label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--ghs-charcoal);
  margin-top: 0.4rem;
}

/* ---------------------------------------------------------------------- */
/* Section heading                                                          */
/* ---------------------------------------------------------------------- */
.ghs-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.ghs-section-head h2 {
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  line-height: 1;
  margin: 0.35rem 0 0;
  color: var(--ghs-charcoal);
  position: relative;
  padding-bottom: 0.65rem;
}
.ghs-section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 5px;
  background: var(--ghs-hose-blue);
}

/* ---------------------------------------------------------------------- */
/* Category cards                                                           */
/* ---------------------------------------------------------------------- */
.ghs-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--ghs-steel-light);
  border-radius: var(--ghs-radius);
  padding: 1.85rem 1.6rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ghs-cat-card:hover {
  border-color: var(--ghs-navy);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 44, 87, 0.12);
}
.ghs-cat-card .icon {
  display: block;
  width: 50px;
  height: 50px;
  color: var(--ghs-navy);
  margin-bottom: 1.4rem;
  transition: color 0.2s ease;
}
.ghs-cat-card:hover .icon {
  color: var(--ghs-hose-blue);
}
.ghs-cat-card h5 {
  font-family: var(--ghs-font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.ghs-cat-card p {
  color: var(--ghs-steel);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  min-height: 2.6rem;
}
.ghs-cat-card .browse {
  font-family: var(--ghs-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ghs-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ghs-cat-card .browse i {
  display: inline-block;
  transition: transform 0.2s ease;
}
.ghs-cat-card:hover .browse i {
  transform: translateX(5px);
}

/* ---------------------------------------------------------------------- */
/* Product cards                                                            */
/* ---------------------------------------------------------------------- */
.ghs-product-card {
  background: #fff;
  border: 1px solid var(--ghs-steel-light);
  border-radius: var(--ghs-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ghs-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 44, 87, 0.10);
}
.ghs-product-card .img-wrap {
  background: var(--ghs-paper);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--ghs-steel-light);
}
.ghs-product-card .img-wrap img {
  max-height: 150px;
  max-width: 85%;
  object-fit: contain;
}
.ghs-product-card .body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ghs-product-card .cat-badge {
  align-self: flex-start;
  background: var(--ghs-navy);
  color: #fff;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}
.ghs-product-card .name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ghs-product-card .sku {
  font-family: var(--ghs-font-mono);
  font-size: 0.74rem;
  color: var(--ghs-steel);
  margin-bottom: 0.85rem;
}
.ghs-product-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--ghs-steel-light);
}
.ghs-product-card .price {
  font-family: var(--ghs-font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--ghs-navy);
}
.ghs-product-card .price .from {
  font-family: var(--ghs-font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ghs-steel);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: -0.2rem;
}

/* ---------------------------------------------------------------------- */
/* CTA banner                                                               */
/* ---------------------------------------------------------------------- */
.ghs-cta {
  background: var(--ghs-charcoal-deep);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ghs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ghs-stripe);
  opacity: 0.05;
}
.ghs-cta-inner {
  position: relative;
  z-index: 1;
}
.ghs-cta h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.ghs-cta p {
  color: var(--ghs-steel-light);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}
