:root {
  --mj-navy: #082d58;
  --mj-navy-dark: #041c38;
  --mj-gold: #c38b2f;
  --mj-gold-light: #e8c47d;
  --mj-cream: #f7f4ee;
  --mj-text: #18202b;
  --mj-muted: #697386;
  --mj-border: #e5e7eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mj-text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--mj-gold); text-decoration: none; }
img { max-width: 100%; }

.mj-topbar {
  padding: 7px 0;
  color: #fff;
  background: var(--mj-navy-dark);
  font-size: 13px;
}
.mj-main-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--mj-border);
  box-shadow: 0 8px 24px rgba(8, 45, 88, .06);
}
.mj-logo img {
  width: 210px;
  height: 72px;
  object-fit: contain;
}
.mj-search { position: relative; max-width: 560px; }
.mj-search input {
  height: 46px;
  padding: 0 50px 0 18px;
  border: 1px solid #d9dee7;
  border-radius: 24px;
  background: #f8fafc;
}
.mj-search button {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--mj-navy);
}
.mj-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.mj-icon-link i { font-size: 20px; color: var(--mj-navy); }
.mj-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: #fff;
  border-radius: 10px;
  background: var(--mj-gold);
  font-size: 11px;
}
.mj-nav {
  padding: 0;
  background: var(--mj-navy);
}
.mj-nav .navbar-nav .nav-link {
  padding: 14px 18px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.mj-nav .navbar-nav .nav-link:hover,
.mj-nav .navbar-nav .nav-item.active .nav-link { color: var(--mj-gold-light); }
.mj-nav .dropdown-menu {
  min-width: 250px;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .15);
}
.mj-nav .dropdown-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 7px;
}
.mj-nav .mj-category-scroll {
  max-height: 205px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--mj-gold) #eef1f5;
}
.mj-nav .mj-category-scroll .dropdown-item {
  min-height: 41px;
}
.mj-nav .mj-category-scroll::-webkit-scrollbar {
  width: 7px;
}
.mj-nav .mj-category-scroll::-webkit-scrollbar-track {
  background: #eef1f5;
  border-radius: 10px;
}
.mj-nav .mj-category-scroll::-webkit-scrollbar-thumb {
  background: var(--mj-gold);
  border-radius: 10px;
}

.mj-hero .carousel-item { background: var(--mj-cream); }
.mj-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 2006 / 784;
  object-fit: cover;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 42px;
  height: 42px;
  padding: 12px;
  border-radius: 50%;
  background-color: rgba(8, 45, 88, .8);
  background-size: 45%;
}

.mj-section { padding: 72px 0; }
.mj-section-soft { background: var(--mj-cream); }
.mj-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--mj-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.mj-title {
  margin: 0 0 16px;
  color: var(--mj-navy-dark);
  font-size: 38px;
  line-height: 1.16;
  font-weight: 800;
}
.mj-lead { color: var(--mj-muted); font-size: 17px; }

.mj-category-card {
  display: block;
  height: 100%;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--mj-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(8, 45, 88, .06);
  transition: .25s ease;
}
.mj-category-card:hover {
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(8, 45, 88, .12);
}
.mj-category-img {
  width: 190px;
  height: 190px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mj-cream);
}
.mj-category-img img { width: 100%; height: 100%; object-fit: contain; }
.mj-category-card h3 { margin: 0 0 5px; color: var(--mj-navy); font-size: 19px; font-weight: 800; }
.mj-category-card small { color: var(--mj-muted); }

.mj-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--mj-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(8, 45, 88, .06);
  transition: .25s ease;
}
.mj-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 45, 88, .13);
}
.mj-product-img {
  position: relative;
  display: block;
  height: 270px;
  padding: 18px;
  overflow: hidden;
  background: #f5f6f7;
}
.mj-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.mj-product-card:hover .mj-product-img img { transform: scale(1.045); }
.mj-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  color: #fff;
  border-radius: 15px;
  background: var(--mj-gold);
  font-size: 11px;
  font-weight: 800;
}
.mj-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.mj-category-name { color: var(--mj-gold); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.mj-product-title {
  min-height: 48px;
  margin: 8px 0 10px;
  color: var(--mj-navy-dark);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 800;
}
.mj-price { display: flex; align-items: baseline; gap: 9px; margin: auto 0 14px; }
.mj-price strong { color: var(--mj-navy); font-size: 21px; }
.mj-price del { color: #9ca3af; font-size: 14px; }
.mj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  color: #fff;
  border: 1px solid var(--mj-navy);
  border-radius: 8px;
  background: var(--mj-navy);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.mj-btn:hover { color: #fff; border-color: var(--mj-gold); background: var(--mj-gold); }
.mj-btn-gold { border-color: var(--mj-gold); background: var(--mj-gold); }
.mj-btn-outline { color: var(--mj-navy); background: transparent; }
.mj-btn-outline:hover { color: #fff; background: var(--mj-navy); }

.mj-promo-image {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(8, 45, 88, .12);
}
.mj-promo-image img { width: 100%; max-height: 430px; object-fit: cover; }

.mj-page-hero {
  padding: 52px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--mj-navy-dark), var(--mj-navy));
}
.mj-page-hero h1 { margin: 0; font-size: 40px; font-weight: 800; }
.mj-breadcrumb { margin-top: 8px; color: rgba(255,255,255,.72); }
.mj-filter-card,
.mj-content-card {
  border: 1px solid var(--mj-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 45, 88, .05);
}
.mj-filter-card { padding: 22px; }
.mj-filter-card h3 { color: var(--mj-navy); font-size: 18px; font-weight: 800; }
.mj-filter-list a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  color: var(--mj-muted);
  border-bottom: 1px solid #eef0f3;
}
.mj-filter-list a.active { color: var(--mj-gold); font-weight: 800; }

.mj-detail-image {
  height: 560px;
  padding: 30px;
  border-radius: 20px;
  background: #f4f5f6;
}
.mj-detail-image img { width: 100%; height: 100%; object-fit: contain; }
.mj-detail-info h1 { color: var(--mj-navy-dark); font-size: 38px; line-height: 1.22; font-weight: 800; }
.mj-stock { display: inline-block; padding: 5px 10px; border-radius: 15px; background: #e7f7ed; color: #15753b; font-weight: 700; }
.mj-spec-list { padding: 0; margin: 0; list-style: none; }
.mj-spec-list li { padding: 10px 0; border-bottom: 1px solid var(--mj-border); }

.mj-form-card {
  padding: 30px;
  border: 1px solid var(--mj-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(8, 45, 88, .08);
}
.mj-form-card h2 { color: var(--mj-navy); font-size: 26px; font-weight: 800; }
.form-control { min-height: 46px; border-radius: 8px; border-color: #dce1e8; }
textarea.form-control { min-height: auto; }

.mj-cart-row {
  display: grid;
  grid-template-columns: 90px 1fr 125px 120px 45px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--mj-border);
}
.mj-cart-row img { width: 90px; height: 90px; padding: 8px; object-fit: contain; border-radius: 10px; background: #f4f5f6; }
.mj-summary { padding: 25px; border-radius: 16px; background: var(--mj-navy-dark); color: #fff; }
.mj-summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.mj-summary-row.total { font-size: 21px; font-weight: 800; border: 0; }

.mj-account-order { padding: 18px; margin-bottom: 12px; border: 1px solid var(--mj-border); border-radius: 12px; }
.mj-status { display: inline-block; padding: 4px 9px; border-radius: 13px; background: #edf2f7; font-size: 12px; font-weight: 800; text-transform: capitalize; }

.mj-footer {
  padding: 65px 0 22px;
  color: #c7d1dd;
  background: var(--mj-navy-dark);
}
.mj-footer-logo { width: 230px; max-height: 90px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,255,255,.25)); }
.mj-footer h3 { margin-bottom: 18px; color: #fff; font-size: 18px; font-weight: 800; }
.mj-footer ul { padding: 0; margin: 0; list-style: none; }
.mj-footer li { margin-bottom: 8px; }
.mj-footer a { color: #c7d1dd; }
.mj-footer-bottom { padding-top: 20px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.mj-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  font-size: 27px;
}
.mj-whatsapp:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 991.98px) {
  .mj-logo img { width: 170px; height: 62px; }
  .mj-header-actions span.label { display: none; }
  .mj-section { padding: 54px 0; }
  .mj-title { font-size: 32px; }
  .mj-detail-image { height: 440px; }
}
@media (max-width: 767.98px) {
  .mj-topbar .text-right { text-align: left !important; margin-top: 3px; }
  .mj-search { max-width: 100%; margin: 8px 0; }
  .mj-icon-link { margin: 0 11px 0 0; }
  .mj-hero img { aspect-ratio: 1.5 / 1; }
  .mj-title, .mj-page-hero h1 { font-size: 29px; }
  .mj-product-img { height: 225px; }
  .mj-category-img { width: 140px; height: 140px; }
  .mj-detail-image { height: 340px; }
  .mj-detail-info h1 { font-size: 29px; }
  .mj-cart-row { grid-template-columns: 75px 1fr; gap: 12px; }
  .mj-cart-row img { width: 75px; height: 75px; }
  .mj-cart-row .cart-quantity,
  .mj-cart-row .cart-price,
  .mj-cart-row .cart-remove { grid-column: 2; }
}

/* MJ Enterprises storefront components */
body { font-family: "DM Sans", Arial, sans-serif; }
h1, h2, .mj-title { font-family: "Playfair Display", Georgia, serif; }
.mj-icon-link b {
  display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px;
  padding: 0 5px; color: #fff; border-radius: 50%; background: var(--mj-gold); font-size: 11px;
}
.mj-nav .nav-link.active { color: var(--mj-gold-light) !important; }
.mj-nav .navbar-toggler { margin: 7px 0; color: #fff; border-color: rgba(255,255,255,.4); }
.mj-nav-phone { color: #fff; font-size: 14px; font-weight: 700; }
.mj-nav-phone:hover { color: var(--mj-gold-light); }
.mj-benefits { padding: 24px 0; color: #fff; background: var(--mj-navy-dark); }
.mj-benefits .col-md-4 { display: flex; align-items: center; gap: 15px; border-right: 1px solid rgba(255,255,255,.14); }
.mj-benefits .col-md-4:last-child { border-right: 0; }
.mj-benefits i { color: var(--mj-gold-light); font-size: 28px; }
.mj-benefits strong, .mj-benefits span { display: block; }
.mj-benefits span { color: #b9c8d7; font-size: 13px; }
.mj-section-heading { max-width: 650px; margin: 0 auto 40px; }
.mj-section-heading > span, .mj-kicker {
  display: block; margin-bottom: 8px; color: var(--mj-gold); font-size: 12px;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.mj-section-heading p { color: var(--mj-muted); }
.mj-category-img { display: block; object-fit: contain; }
.mj-category-card > span { color: var(--mj-muted); font-size: 13px; }
.mj-soft-bg { background: var(--mj-cream); }
.mj-view-all { color: var(--mj-navy); font-weight: 800; }
.mj-product-image { position: relative; display: block; background: #f5f6f7; }
.mj-product-img { display: block; width: 100%; height: 270px; padding: 18px; object-fit: contain; }
.mj-product-card:hover .mj-product-img { transform: scale(1.035); transition: transform .3s ease; }
.mj-product-badge, .mj-stock-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 10px; color: #fff;
  border-radius: 15px; background: var(--mj-gold); font-size: 11px; font-weight: 800;
}
.mj-stock-badge { background: #9b1c1c; }
.mj-category-label { color: var(--mj-gold); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.mj-product-body h3 { min-height: 48px; margin: 8px 0 10px; font-size: 17px; line-height: 1.42; font-weight: 800; }
.mj-product-body h3 a { color: var(--mj-navy-dark); }
.mj-btn-primary, .mj-btn-gold, .mj-btn-outline, .mj-btn-icon {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 20px;
  border: 1px solid var(--mj-navy); border-radius: 8px; font-weight: 800;
}
.mj-btn-primary, .mj-btn-icon { color: #fff; background: var(--mj-navy); }
.mj-btn-primary:hover, .mj-btn-icon:hover { color: #fff; border-color: var(--mj-gold); background: var(--mj-gold); }
.mj-btn-icon { width: 44px; padding: 0; }
.mj-btn-gold { color: #fff; border-color: var(--mj-gold); background: var(--mj-gold); }
.mj-btn-gold:hover { color: #fff; background: #a66f17; }
.mj-btn-outline { color: var(--mj-navy); background: transparent; }
.mj-btn-outline:hover { color: #fff; background: var(--mj-navy); }
.mj-home-promo { display: block; overflow: hidden; border-radius: 22px; box-shadow: 0 16px 45px rgba(8,45,88,.12); }
.mj-home-promo img { display: block; width: 100%; max-height: 430px; object-fit: cover; }
.mj-page-hero span { color: var(--mj-gold-light); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.mj-page-hero p { margin: 8px 0 0; color: rgba(255,255,255,.72); }
.mj-page-hero a { color: #fff; }
.mj-filter-card > a {
  display: flex; justify-content: space-between; padding: 10px 0; color: var(--mj-muted); border-bottom: 1px solid #eef0f3;
}
.mj-filter-card > a.active { color: var(--mj-gold); font-weight: 800; }
.mj-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.mj-shop-toolbar .form-control { max-width: 215px; }
.mj-empty { padding: 60px 20px; text-align: center; border: 1px solid var(--mj-border); border-radius: 18px; background: #fff; }
.mj-empty > i { margin-bottom: 16px; color: var(--mj-gold); font-size: 45px; }
.mj-detail-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.mj-detail-price strong { color: var(--mj-navy); font-size: 30px; }
.mj-detail-price del { color: #9ca3af; }
.mj-sku { color: var(--mj-muted); }
.mj-buy-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px; margin-top: 24px; }
.mj-buy-form .form-group { width: 100px; margin: 0; }
.mj-trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; color: var(--mj-muted); font-size: 13px; }
.mj-trust-row i { color: var(--mj-gold); }
.mj-product-copy { padding: 32px; border: 1px solid var(--mj-border); border-radius: 18px; }
.mj-product-copy h2, .mj-product-copy h3 { color: var(--mj-navy); }
.mj-auth-section { min-height: 65vh; padding: 70px 0; background: var(--mj-cream); }
.mj-cart-card { padding: 0 25px; border: 1px solid var(--mj-border); border-radius: 16px; background: #fff; }
.mj-cart-row h3 { margin: 4px 0; font-size: 17px; }
.mj-summary h2, .mj-summary h3 { color: #fff; font-size: 23px; }
.mj-summary p { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; margin: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.mj-summary p span { max-width: 68%; }
.mj-summary-total { padding-top: 16px !important; border: 0 !important; font-size: 20px; }
.mj-payment-option {
  display: flex; align-items: center; gap: 10px; padding: 13px; margin-top: 10px; color: var(--mj-text);
  border: 1px solid #dce1e8; border-radius: 10px; background: #fff;
}
.mj-payment-option span, .mj-payment-option small { display: block; }
.mj-payment-option.disabled { opacity: .62; }
.mj-order-item {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 12px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--mj-border);
}
.mj-order-item small, .mj-order-item strong { display: block; }
.mj-about-image { height: 480px; overflow: hidden; border-radius: 22px; background: var(--mj-cream); }
.mj-about-image img { width: 100%; height: 100%; object-fit: contain; }
.mj-about-point { padding: 18px; border: 1px solid var(--mj-border); border-radius: 12px; }
.mj-about-point i, .mj-about-point strong, .mj-about-point span { display: block; }
.mj-about-point i { margin-bottom: 8px; color: var(--mj-gold); font-size: 22px; }
.mj-about-point span { color: var(--mj-muted); font-size: 13px; }
.mj-contact-panel { height: 100%; padding: 32px; color: #d9e2ec; border-radius: 18px; background: var(--mj-navy-dark); }
.mj-contact-panel h2 { color: #fff; }
.mj-contact-panel > div { display: flex; gap: 13px; margin-top: 24px; }
.mj-contact-panel > div i { color: var(--mj-gold-light); font-size: 20px; }
.mj-contact-panel span, .mj-contact-panel small, .mj-contact-panel a { display: block; }
.mj-contact-panel small { color: #9db0c2; }
.mj-contact-panel a { color: #fff; }
.mj-error-code { display: block; color: var(--mj-gold); font-size: 75px; line-height: 1; }
.mj-success-icon { display: flex; align-items: center; justify-content: center; width: 75px; height: 75px; margin: 0 auto 22px; color: #fff; border-radius: 50%; background: #219653; font-size: 34px; }
.mj-footer h4 { margin-bottom: 18px; color: #fff; font-size: 18px; font-weight: 800; }
.mj-footer .col-6 > a { display: block; margin-bottom: 8px; }
.mj-footer-contact { display: block; margin-top: 8px; }
.mj-footer-bottom { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 991.98px) {
  .mj-nav-phone { display: none; }
  .mj-shop-toolbar { align-items: stretch; flex-direction: column; }
  .mj-shop-toolbar .form-control { max-width: none; }
}
@media (max-width: 767.98px) {
  .mj-benefits .col-md-4 { padding-top: 9px; padding-bottom: 9px; border-right: 0; }
  .mj-product-img { height: 210px; padding: 10px; }
  .mj-product-body { padding: 14px; }
  .mj-product-body h3 { min-height: 43px; font-size: 14px; }
  .mj-price strong { font-size: 17px; }
  .mj-footer-bottom { flex-direction: column; }
  .mj-order-item { grid-template-columns: 1fr 1fr; }
  .mj-about-image { height: 350px; }
}
