/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #0f1111;
  --bg-deep: #090b0b;
  --panel: #0f1212;
  --panel-soft: #171a1a;
  --cream: #f4ead3;
  --muted: #cdbb95;
  --gold: #c5a45f;
  --olive: #808a54;
  --olive-dark: #4d5632;
  --tomato: #9f2f23;
  --line: rgba(197, 164, 95, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(197, 164, 95, 0.06), transparent 24rem),
    var(--bg);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 11, 11, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.nav {
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: 28px;
  gap: 28px;
}

.brand {
  display: grid;
  justify-items: center;
  grid-gap: 2px;
  gap: 2px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0d0f0f;
  object-fit: contain;
  padding: 8px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  color: var(--cream);
  font-size: 16px;
}

.nav-group a:first-child {
  color: var(--gold);
}

.nav-group-right {
  justify-content: flex-end;
}

.cart-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--tomato);
  color: #fff8e5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.hero-banner {
  position: relative;
  height: clamp(220px, 20vw, 300px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 164, 95, 0.18);
  background: #050707;
}

.hero-image {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.04) brightness(0.74);
}

.hero-image-mobile {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.48), transparent 24%, transparent 76%, rgba(4, 6, 7, 0.58)),
    linear-gradient(0deg, rgba(4, 6, 7, 0.34), rgba(4, 6, 7, 0.08));
}

.hero-banner h1 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: linear-gradient(180deg, #bfa766, #7e6834);
  color: #fff8e5;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.button.secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-preview {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-gap: 28px;
  gap: 28px;
  padding: 42px 0 56px;
  align-items: start;
}

.category-panel h2 {
  margin: 0;
  font-size: 28px;
}

.category-panel p {
  margin: 8px 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.divider {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(244, 234, 211, 0.18);
}

.category-list {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.category-filter {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  grid-gap: 14px;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 234, 211, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(23, 28, 28, 0.96), rgba(12, 15, 15, 0.96));
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.category-filter.active {
  border-color: rgba(197, 164, 95, 0.58);
  background:
    linear-gradient(90deg, rgba(128, 138, 84, 0.22), transparent 72%),
    linear-gradient(180deg, #19201d, #0f1412);
}

.category-filter strong,
.category-filter small {
  display: block;
}

.category-filter strong {
  color: #fff8e7;
  font-size: 16px;
  line-height: 1.1;
}

.category-filter small {
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.28;
}

.category-filter em {
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.shop-preview-products {
  min-width: 0;
}

.shop-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}

.shop-preview-head h2 {
  margin: 0;
  font-size: 28px;
}

.shop-preview-head .eyebrow {
  margin-bottom: 6px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(176px, 208px));
  grid-gap: 14px;
  gap: 14px;
  justify-content: start;
}

.empty-state {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: start;
  grid-gap: 12px;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(244, 234, 211, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #13191b, #0e1214);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.section h2 {
  margin: 0;
  color: var(--cream);
  font-size: 30px;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.card {
  border: 1px solid rgba(244, 234, 211, 0.08);
  border-radius: 5px;
  background: linear-gradient(180deg, #13191b, #0e1214);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.card-body {
  padding: 10px 10px 12px;
  text-align: center;
}

.card h3 {
  margin: 0 0 8px;
  color: #fff8e7;
  font-size: 16px;
  line-height: 1.08;
}

.category-card {
  text-align: left;
}

.media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.88;
  margin: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: #1d2222;
}

.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-media {
  aspect-ratio: 4 / 3;
  margin: 12px;
}

.price {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 28px;
  gap: 28px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.cart-lines {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}

.cart-status {
  border: 1px solid rgba(128, 138, 84, 0.45);
  border-radius: 6px;
  background: rgba(128, 138, 84, 0.14);
  color: var(--cream);
  padding: 10px 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px auto auto;
  grid-gap: 14px;
  gap: 14px;
  align-items: end;
  text-align: left;
}

.cart-line h2 {
  margin: 0 0 6px;
}

.cart-line .price {
  margin: 0;
  white-space: nowrap;
}

.checkout-form {
  text-align: left;
}

.checkout-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}

.checkbox-label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.checkout-success {
  max-width: 680px;
  margin: 0 auto;
}

label {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11160e;
  color: var(--cream);
  padding: 10px 12px;
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 34px;
  gap: 34px;
}

.footer strong {
  color: var(--cream);
  font-size: 16px;
}

.footer p {
  margin: 8px 0 0;
  font-size: 13px;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 0;
  gap: 0;
  margin-top: 12px;
}

.newsletter input {
  border-radius: 6px 0 0 6px;
}

.newsletter .button {
  border-radius: 0 6px 6px 0;
  min-height: 44px;
}

.story-note {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.statement-page {
  width: min(1500px, calc(100% - 32px));
  display: grid;
  grid-gap: 24px;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.statement-section {
  background:
    radial-gradient(circle at 50% 0, rgba(197, 164, 95, 0.045), transparent 28rem),
    #0b0d0d;
}

.statement-page .eyebrow {
  color: var(--gold);
}

.statement-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  grid-gap: 24px;
  gap: 24px;
  align-items: stretch;
}

.statement-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.statement-summary,
.statement-meta,
.statement-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.statement-summary {
  display: grid;
  align-content: center;
  grid-gap: 8px;
  gap: 8px;
  padding: 24px;
}

.statement-summary span,
.statement-summary small,
.statement-meta span {
  color: var(--muted);
}

.statement-summary strong {
  font-size: 38px;
}

.statement-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1px;
  gap: 1px;
  overflow: hidden;
}

.statement-meta div {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.statement-table-wrap {
  overflow-x: auto;
}

.statement-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.statement-table th,
.statement-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.statement-table th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.statement-col-number {
  width: 52px;
}

.statement-col-date {
  width: 112px;
}

.statement-col-area {
  width: 150px;
}

.statement-col-task {
  width: 230px;
}

.statement-col-hours {
  width: 88px;
}

.statement-col-value {
  width: 112px;
}

.statement-table td:nth-child(1),
.statement-table td:nth-child(2),
.statement-table td:nth-child(6),
.statement-table td:nth-child(7),
.statement-table th:nth-child(1),
.statement-table th:nth-child(2),
.statement-table th:nth-child(6),
.statement-table th:nth-child(7) {
  white-space: nowrap;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.statement-table td:nth-child(1),
.statement-table td:nth-child(6),
.statement-table td:nth-child(7),
.statement-table th:nth-child(1),
.statement-table th:nth-child(6),
.statement-table th:nth-child(7) {
  text-align: right;
}

.statement-table tfoot td {
  color: var(--cream);
  font-weight: 800;
  background: var(--panel-soft);
}

.statement-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .two-col,
  .cart-line,
  .statement-hero,
  .statement-meta {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 0;
  }

  .nav-group,
  .nav-group-right {
    justify-content: center;
  }

  .shop-preview {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .category-panel {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
  }

  .product-strip,
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand {
    order: -1;
  }

  .nav-group {
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 15px;
  }

  .product-strip,
  .footer-grid,
  .grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    height: 210px;
  }

  .hero-image-wide {
    display: none;
  }

  .hero-image-mobile {
    display: block;
    object-position: center center;
  }

  .hero-banner h1 {
    max-width: min(92vw, 420px);
    font-size: 32px;
  }

  .newsletter div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .newsletter input,
  .newsletter .button {
    border-radius: 6px;
  }
}

