:root {
  --green: #b0b435;
  --green-dark: #8f9327;
  --dark: #101418;
  --dark-2: #1f252b;
  --muted: #777;
  --light: #f5f6f2;
  --border: #e8e8e8;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #f7f8f3;
}

a {
  text-decoration: none;
}

.top-bar {
  background: var(--dark);
  color: #d9d9d9;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #fff;
}

.main-header {
  background: var(--dark-2);
  border-bottom: 4px solid var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-text {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-text::first-letter {
  color: var(--green);
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  padding: 26px 16px;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--green);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fff;
}

.header-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 8px;
  border-radius: 50%;
  transition: 0.2s;
}

.header-icon:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.main-header .fw-semibold {
  color: #fff;
}

.btn,
button {
  border-radius: 0;
}

.btn-sm {
  padding: 8px 16px;
  font-weight: 700;
}

.btn-dark {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-dark:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--green);
  color: #fff;
  background: transparent;
  font-weight: 700;
}

.btn-outline-dark:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-light {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 700;
}

.btn-light:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.btn-shop {
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  padding: 12px 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 18px rgba(176, 180, 53, 0.25);
  transition: 0.2s;
}

.btn-shop:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600")
      center/cover;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
}

.category-box {
  position: relative;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}

.category-box:hover img {
  transform: scale(1.08);
}

.category-caption {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(176, 180, 53, 0.94);
  color: #fff;
  padding: 15px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.product-card {
  border: 1px solid var(--border);
  background: #fff;
  transition: 0.25s;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transform: translateY(-5px);
}

.product-img-wrap {
  height: 260px;
  background: #f7f7f7;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: #fff;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 800;
}

.product-body {
  padding: 20px;
}

.product-title {
  color: #111;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.product-title:hover {
  color: var(--green);
}

.product-price {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.page-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("https://images.unsplash.com/photo-1488459716781-31db52582fe9?w=1600")
      center/cover;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-banner p {
  font-size: 17px;
}

.sidebar-box {
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.sidebar-box h5 {
  font-weight: 900;
  margin-bottom: 18px;
}

.account-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.form-control,
.form-select {
  border-radius: 0;
  min-height: 48px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(176, 180, 53, 0.18);
}

.table {
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.table-dark th {
  background: var(--dark-2) !important;
  color: #fff;
  padding: 18px;
}

.table td {
  padding: 18px;
  background: #fff;
}

.footer-main {
  background: var(--dark-2);
  color: #ccc;
  padding: 60px 0 30px;
  border-top: 4px solid var(--green);
}

.footer-main h5 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-main a {
  color: #ccc;
  display: block;
  margin-bottom: 8px;
}

.footer-main a:hover {
  color: var(--green);
}

.footer-bottom {
  background: #080a0c;
  color: #aaa;
  padding: 18px 0;
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-sm {
  height: 38px;
  padding: 0 14px;
}

.btn-lg {
  height: 50px;
  padding: 0 26px;
}

.btn-shop {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}

.btn-shop:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline-dark:hover {
  background: var(--green);
  color: #fff;
}

.btn-dark {
  background: var(--dark);
  border: 2px solid var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
}

.btn-warning {
  background: #f7b500;
  color: #000;
  border: none;
}

.btn-success {
  background: #2e8b57;
  color: #fff;
  border: none;
}
