@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #E85D26;
  --primary-dark: #C44A18;
  --primary-light: #FBEEE7;
  --secondary: #1A2744;
  --secondary-light: #2C3E6E;
  --accent: #F5A623;
  --gray-50: #F8F7F5;
  --gray-100: #EFEFED;
  --gray-200: #DEDEDD;
  --gray-500: #8A8A85;
  --gray-700: #4A4A47;
  --gray-900: #1C1C1A;
  --white: #FFFFFF;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar-main {
  background: var(--secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

.navbar-main .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  padding: 1rem 0;
}

.navbar-main .navbar-brand span {
  color: var(--primary);
}

.navbar-main .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--white) !important;
}

.navbar-main .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--primary);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== HERO ===== */
.hero-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.hero-section::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.07;
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hero-title .highlight {
  color: var(--primary);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.btn-primary-main {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-main:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-main {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-main:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.75rem;
}

.hero-image-placeholder svg {
  opacity: 0.4;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 1rem 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ===== SECTIONS ===== */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 560px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
  transform: translateY(-4px);
}

.product-img-wrap {
  background: var(--gray-50);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-img-placeholder svg {
  opacity: 0.35;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.product-badge.new { background: var(--primary); }
.product-badge.custom { background: var(--accent); color: var(--gray-900); }

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-specs li {
  font-size: 0.85rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-specs li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  justify-content: center;
  transition: all var(--transition);
}

.btn-wa:hover {
  background: #1eb857;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-detail {
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
}

.btn-detail:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--secondary);
  padding: 80px 0;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(232,93,38,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--primary);
  padding: 60px 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.btn-wa-large {
  background: var(--white);
  color: #128C7E;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
}

.btn-wa-large:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== FILTERS (katalog) ===== */
.filter-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.filter-btn {
  background: transparent;
  color: var(--gray-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* ===== DETAIL PAGE ===== */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
}

.breadcrumb {
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--gray-500); }

.product-detail-img {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  min-height: 380px;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thumb-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.thumb-item {
  width: 72px;
  height: 72px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color var(--transition);
}

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

.thumb-item:hover,
.thumb-item.active {
  border-color: var(--primary);
}

.product-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.05;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.spec-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--gray-100);
}

.spec-table td {
  padding: 0.7rem 0;
  font-size: 0.92rem;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--gray-500);
  width: 40%;
  font-weight: 600;
}

.spec-table td:last-child {
  color: var(--gray-900);
  font-weight: 500;
}

.btn-wa-detail {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  justify-content: center;
  transition: all var(--transition);
  margin-bottom: 0.75rem;
}

.btn-wa-detail:hover {
  background: #1eb857;
  color: var(--white);
}

.btn-wa-detail-outline {
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  justify-content: center;
  transition: all var(--transition);
}

.btn-wa-detail-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  font-family: var(--font-display);
}

/* ===== FOOTER ===== */
.footer-main {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--primary); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.footer-contact-item .icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--secondary);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  position: relative;
}

.page-header-title span { color: var(--primary); }

.page-header-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
}

/* ===== EDITOR PAGE HERO ===== */
.page-hero {
  background: #0D0F12;
  padding: 128px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero .container {
  position: relative;
}

.page-hero-label {
  color: #C8973A;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: #C8973A;
}

.page-hero-title {
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  position: relative;
}

.page-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1rem 0 0;
  max-width: 680px;
  position: relative;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all var(--transition);
}

.wa-float:hover {
  background: #1eb857;
  transform: scale(1.08);
  color: var(--white);
}

/* ===== PAGINATION ===== */
.page-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--secondary);
  border: 1.5px solid var(--gray-200);
}

.page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* ===== RELATED PRODUCTS ===== */
.related-section {
  background: var(--gray-50);
  padding: 80px 0;
  border-top: 1px solid var(--gray-200);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@media (max-width: 768px) {
  .hero-section { padding: 48px 0; min-height: auto; }
  .stat-divider { display: none; }
  .stat-item { margin-bottom: 0.5rem; }
  .stats-bar .row > div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 0.75rem; }
  .filter-bar { top: 57px; }
}

/* ===== HOME PREMIUM COMPANY PROFILE ===== */
body.home-premium {
  --premium-ink: #14120f;
  --premium-charcoal: #1b1a17;
  --premium-night: #101923;
  --premium-navy: #172435;
  --premium-brass: #b89455;
  --premium-brass-dark: #8c6b37;
  --premium-ivory: #f4efe5;
  --premium-stone: #d8cdb9;
  --premium-muted: #756f64;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 0;
  --radius-lg: 0;
  --shadow: 0 18px 40px rgba(20, 18, 15, 0.08);
  --shadow-lg: 0 30px 90px rgba(20, 18, 15, 0.18);
  color: var(--premium-ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(184, 148, 85, 0.12), transparent 28rem),
    linear-gradient(180deg, #f8f4ec 0%, #f3ecdf 44%, #ede3d2 100%);
  font-family: var(--font-body);
}

body.home-premium::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(20, 18, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 18, 15, 0.025) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mix-blend-mode: multiply;
}

.home-premium h1,
.home-premium h2,
.home-premium h3,
.home-premium .navbar-brand,
.home-premium .footer-brand,
.home-premium .cta-title,
.home-premium .stat-number {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.home-premium .navbar-main {
  background: rgba(18, 25, 33, 0.92);
  border-bottom: 1px solid rgba(216, 205, 185, 0.22);
  backdrop-filter: blur(18px);
}

.home-premium .navbar-main .navbar-brand {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-premium .navbar-main .navbar-brand span,
.home-premium .footer-brand span {
  color: var(--premium-brass);
}

.home-premium .navbar-main .nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(244, 239, 229, 0.68) !important;
  letter-spacing: 0.17em;
}

.home-premium .navbar-main .nav-link:hover,
.home-premium .navbar-main .nav-link.active {
  color: var(--premium-ivory) !important;
}

.home-premium .navbar-main .nav-link.active::after {
  height: 1px;
  background: var(--premium-brass);
}

.home-premium .btn-primary-main,
.home-premium .btn-outline-main,
.home-premium .btn-detail,
.home-premium .btn-wa,
.home-premium .btn-wa-large {
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-premium .btn-primary-main {
  background: linear-gradient(135deg, #c6a15c, #8b6934);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(112, 79, 33, 0.26);
}

.home-premium .btn-primary-main:hover {
  background: linear-gradient(135deg, #d4b36f, #94713a);
  border-color: transparent;
}

.home-premium .btn-outline-main {
  border-color: rgba(244, 239, 229, 0.32);
  color: rgba(244, 239, 229, 0.84);
}

.home-premium .hero-section {
  min-height: 760px;
  padding: 112px 0 96px;
  background:
    linear-gradient(115deg, rgba(15, 20, 24, 0.96) 0%, rgba(19, 31, 43, 0.9) 48%, rgba(36, 31, 22, 0.62) 100%),
    radial-gradient(circle at 76% 24%, rgba(184, 148, 85, 0.26), transparent 25rem),
    #101923;
}

.home-premium .hero-section::before {
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 229, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.home-premium .hero-section::after {
  right: 3vw;
  top: 15%;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border: 1px solid rgba(184, 148, 85, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 85, 0.14), transparent 68%);
  opacity: 1;
}

.home-premium .hero-badge,
.home-premium .section-label,
.home-premium .product-category,
.home-premium .footer-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-premium .hero-badge {
  background: transparent;
  color: var(--premium-brass);
  border-left: 1px solid var(--premium-brass);
  padding: 0.15rem 0 0.15rem 1rem;
}

.home-premium .hero-title {
  max-width: 740px;
  color: var(--premium-ivory);
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  font-weight: 600;
  text-transform: none;
  line-height: 0.82;
}

.home-premium .hero-title .highlight {
  color: var(--premium-brass);
  font-style: italic;
  font-weight: 500;
}

.home-premium .hero-desc {
  max-width: 590px;
  color: rgba(244, 239, 229, 0.72);
  font-size: 1.04rem;
  line-height: 1.9;
}

.home-premium .hero-image-wrap {
  padding: 18px;
  border: 1px solid rgba(216, 205, 185, 0.22);
  background: linear-gradient(145deg, rgba(244, 239, 229, 0.08), rgba(244, 239, 229, 0.02));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
}

.home-premium .hero-image-placeholder {
  min-height: 460px;
  border: 0;
  border-radius: 0;
  color: rgba(244, 239, 229, 0.56);
  background:
    linear-gradient(160deg, rgba(16, 25, 35, 0.04), rgba(16, 25, 35, 0.65)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 12px),
    linear-gradient(135deg, #d9d0bf 0%, #f3eadc 48%, #a89470 100%);
  position: relative;
  overflow: hidden;
}

.home-premium .hero-image-placeholder::before {
  content: 'Industrial Grade FIBC';
  position: absolute;
  left: 28px;
  top: 26px;
  color: rgba(16, 25, 35, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-premium .hero-image-placeholder::after {
  content: '';
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  bottom: 46px;
  right: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(201, 188, 162, 0.86)),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(20,18,15,0.06) 9px 10px);
  clip-path: polygon(18% 4%, 84% 0, 100% 24%, 92% 100%, 9% 100%, 0 25%);
  box-shadow: 0 28px 55px rgba(20, 18, 15, 0.28);
}

.home-premium .stats-bar {
  background: #17140f;
  padding: 0;
  border-block: 1px solid rgba(216, 205, 185, 0.2);
}

.home-premium .stat-item {
  min-height: 118px;
  border-left: 1px solid rgba(216, 205, 185, 0.16);
}

.home-premium .stats-bar .row > div:last-child .stat-item {
  border-right: 1px solid rgba(216, 205, 185, 0.16);
}

.home-premium .stat-number {
  color: var(--premium-brass);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 500;
}

.home-premium .stat-label {
  color: rgba(244, 239, 229, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.home-premium section.py-5 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34), transparent 35%),
    var(--premium-ivory);
}

.home-premium .section-label {
  color: var(--premium-brass-dark);
}

.home-premium .section-title {
  color: var(--premium-ink);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  text-transform: none;
  line-height: 0.92;
}

.home-premium .product-card {
  border: 1px solid rgba(20, 18, 15, 0.12);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}

.home-premium .product-card:hover {
  border-color: rgba(184, 148, 85, 0.48);
  box-shadow: 0 30px 80px rgba(20, 18, 15, 0.14);
  transform: translateY(-8px);
}

.home-premium .product-img-wrap {
  background:
    radial-gradient(circle at 65% 35%, rgba(184, 148, 85, 0.22), transparent 12rem),
    linear-gradient(145deg, #e9dfcf, #cbbda4);
}

.home-premium .product-img-placeholder {
  color: rgba(20, 18, 15, 0.46);
}

.home-premium .product-badge {
  background: rgba(16, 25, 35, 0.92);
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.76rem;
}

.home-premium .product-badge.new,
.home-premium .product-badge.custom {
  background: var(--premium-brass);
  color: #16120b;
}

.home-premium .product-body {
  padding: 1.45rem;
}

.home-premium .product-name {
  color: var(--premium-night);
  font-size: 1.55rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.025em;
}

.home-premium .product-specs li {
  color: var(--premium-muted);
  font-size: 0.86rem;
}

.home-premium .product-specs li::before {
  width: 4px;
  height: 4px;
  background: var(--premium-brass);
}

.home-premium .product-footer {
  border-top-color: rgba(20, 18, 15, 0.1);
}

.home-premium .btn-wa {
  background: #1f7d53;
}

.home-premium .btn-wa:hover {
  background: #176640;
}

.home-premium .btn-detail {
  color: var(--premium-night);
  border-color: rgba(20, 18, 15, 0.16);
}

.home-premium .features-section {
  background:
    linear-gradient(135deg, rgba(13, 19, 26, 0.96), rgba(20, 28, 37, 0.92)),
    radial-gradient(circle at 12% 20%, rgba(184, 148, 85, 0.2), transparent 26rem);
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}

.home-premium .features-section::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(216, 205, 185, 0.12);
  pointer-events: none;
}

.home-premium .feature-item {
  min-height: 245px;
  padding: 2.2rem 1.3rem;
  border: 1px solid rgba(216, 205, 185, 0.14);
  background: rgba(244, 239, 229, 0.035);
  text-align: left;
}

.home-premium .feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 1.4rem;
  border-radius: 0;
  background: rgba(184, 148, 85, 0.13);
  color: var(--premium-brass);
}

.home-premium .feature-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

.home-premium .feature-desc {
  color: rgba(244, 239, 229, 0.6);
}

.home-premium .cta-strip {
  background:
    linear-gradient(100deg, #b89455 0%, #8f6b36 48%, #17140f 100%);
  padding: 76px 0;
}

.home-premium .cta-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.045em;
}

.home-premium .btn-wa-large {
  color: #142319;
  box-shadow: 0 22px 50px rgba(20, 18, 15, 0.22);
}

.home-premium .footer-main {
  background: #11100e;
  color: rgba(244, 239, 229, 0.62);
}

.home-premium .footer-brand {
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.home-premium .footer-links a,
.home-premium .footer-contact-item,
.home-premium .footer-contact-item a[style] {
  color: rgba(244, 239, 229, 0.58) !important;
}

.home-premium .footer-links a:hover,
.home-premium .footer-contact-item .icon {
  color: var(--premium-brass) !important;
}

.home-premium .wa-float {
  background: #1f7d53;
  box-shadow: 0 18px 42px rgba(31, 125, 83, 0.34);
}

@media (max-width: 991px) {
  .home-premium .hero-section {
    min-height: auto;
    padding: 80px 0 64px;
  }

  .home-premium .hero-image-placeholder {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  body.home-premium::before {
    background-size: 32px 32px;
  }

  .home-premium .hero-title {
    font-size: clamp(3.4rem, 17vw, 5.3rem);
  }

  .home-premium .stat-item {
    border: 0;
    min-height: 104px;
  }

  .home-premium .stats-bar .row > div:not(:last-child) {
    border-bottom: 1px solid rgba(216, 205, 185, 0.14);
  }

  .home-premium .features-section::before {
    inset: 12px;
  }

  .home-premium .feature-item {
    min-height: 220px;
    padding: 1.5rem 1rem;
  }
}

/* ===== CMS DYNAMIC MENUS ===== */
.cms-menu {
  --cms-menu-accent: #b89455;
  --cms-menu-ink: inherit;
  --cms-menu-panel: rgba(16, 25, 35, 0.96);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 1vw, 0.85rem);
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms-menu,
.cms-submenu {
  font-family: "Manrope", "Montserrat", sans-serif;
}

.cms-menu-item {
  line-height: 1;
  position: relative;
}

.cms-menu a {
  align-items: center;
  border-radius: 999px;
  color: var(--cms-menu-ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  min-height: 42px;
  padding: 0.85rem 1rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.cms-menu a::after {
  background: var(--cms-menu-accent);
  border-radius: 999px;
  bottom: 0.48rem;
  content: "";
  height: 2px;
  left: 1rem;
  opacity: 0;
  position: absolute;
  right: 1rem;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cms-menu > .cms-menu-item:hover > a,
.cms-menu > .cms-menu-item:focus-within > a {
  background: rgba(184, 148, 85, 0.13);
  color: var(--cms-menu-accent);
  transform: translateY(-1px);
}

.cms-menu > .cms-menu-item:hover > a::after,
.cms-menu > .cms-menu-item:focus-within > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.cms-menu-item:has(> .cms-submenu) > a::before {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 6px;
  margin-left: 0.1rem;
  order: 2;
  transform: rotate(45deg) translateY(-2px);
  width: 6px;
}

.cms-submenu {
  background: linear-gradient(145deg, rgba(16, 25, 35, 0.98), rgba(20, 18, 15, 0.98));
  border: 1px solid rgba(184, 148, 85, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  display: block;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 230px;
  opacity: 0;
  padding: 0.55rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
  z-index: 100;
}

.cms-submenu::before {
  background: transparent;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -14px;
}

.cms-menu-item:hover > .cms-submenu,
.cms-menu-item:focus-within > .cms-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.cms-submenu .cms-menu-item {
  margin: 0;
}

.cms-submenu a {
  border-radius: 12px;
  color: rgba(244, 239, 229, 0.82);
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  letter-spacing: 0.07em;
  min-height: 0;
  padding: 0.82rem 0.9rem;
  width: 100%;
}

.cms-submenu a::after {
  display: none;
}

.cms-submenu .cms-menu-item:hover > a,
.cms-submenu .cms-menu-item:focus-within > a {
  background: rgba(184, 148, 85, 0.16);
  color: #f4efe5;
  transform: translateX(2px);
}

.cms-submenu .cms-submenu {
  left: calc(100% + 10px);
  top: 0;
}

.cms-menu .nav-highlight > a,
.cms-menu-item.nav-highlight > a {
  background: var(--cms-menu-accent);
  color: #14120f;
  box-shadow: 0 12px 28px rgba(184, 148, 85, 0.26);
}

.cms-menu .nav-highlight > a::after,
.cms-menu-item.nav-highlight > a::after {
  display: none;
}

header .cms-menu {
  color: inherit;
}

footer .cms-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: flex-start;
}

footer .cms-menu a {
  min-height: 0;
  padding: 0.35rem 0;
}

footer .cms-menu a::after,
footer .cms-menu-item:has(> .cms-submenu) > a::before {
  display: none;
}

footer .cms-submenu {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  margin: 0.15rem 0 0 1rem;
  opacity: 1;
  padding: 0;
  pointer-events: auto;
  position: static;
  transform: none;
  visibility: visible;
}

@media (max-width: 991px) {
  .cms-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: flex-start;
    width: 100%;
  }

  .cms-menu a {
    justify-content: space-between;
    min-height: 0;
    padding: 0.9rem 1rem;
    width: 100%;
  }

  .cms-submenu,
  .cms-submenu .cms-submenu {
    background: rgba(16, 25, 35, 0.06);
    border: 1px solid rgba(184, 148, 85, 0.16);
    box-shadow: none;
    left: auto;
    margin: 0.25rem 0 0 0.85rem;
    opacity: 1;
    pointer-events: auto;
    position: static;
    top: auto;
    transform: none;
    visibility: visible;
  }
}


/* ===== PRODUCT RICH DESCRIPTION ===== */
.product-rich-description {
  color: var(--gray-700);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}

.product-rich-description p,
.product-rich-description ul,
.product-rich-description ol,
.product-rich-description table {
  margin-bottom: 1rem;
}

.product-rich-description ul,
.product-rich-description ol {
  padding-left: 1.25rem;
}

.product-rich-description a {
  color: var(--primary);
  font-weight: 700;
}

.product-rich-description table {
  border-collapse: collapse;
  width: 100%;
}

.product-rich-description td,
.product-rich-description th {
  border: 1px solid rgba(15, 26, 43, 0.12);
  padding: 0.7rem 0.85rem;
}
/* ===== INDUSTRIAL COMPANY HEADER ===== */
.industrial-site-header {
  --industrial-ink: #101923;
  --industrial-panel: rgba(16, 25, 35, 0.94);
  --industrial-line: rgba(216, 205, 185, 0.18);
  --industrial-brass: #b89455;
  --industrial-brass-strong: #d4ad66;
  --industrial-ivory: #f4efe5;
  --industrial-muted: rgba(244, 239, 229, 0.68);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.industrial-site-header .industrial-topbar {
  background:
    linear-gradient(90deg, rgba(184, 148, 85, 0.18), transparent 34%),
    #0d151d;
  border-bottom: 1px solid var(--industrial-line);
  color: var(--industrial-muted);
  padding: 0.45rem 0;
}

.industrial-site-header .top-bar-kicker {
  border-right: 1px solid rgba(244, 239, 229, 0.16);
  color: var(--industrial-brass-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding-right: 1rem;
  text-transform: uppercase;
}

.industrial-site-header .top-bar-info a,
.industrial-site-header .top-bar-social {
  color: var(--industrial-muted);
}

.industrial-site-header .top-bar-info a:hover {
  color: var(--industrial-ivory);
}

.industrial-site-header .top-bar-social a {
  background: rgba(244, 239, 229, 0.08);
  border: 1px solid rgba(244, 239, 229, 0.12);
  box-shadow: none;
  color: var(--industrial-ivory);
}

.industrial-site-header .top-bar-social a:hover {
  background: var(--industrial-brass);
  color: #14120f;
}

.industrial-site-header .industrial-navbar,
.home-premium .industrial-site-header .industrial-navbar {
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 148, 85, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(16, 25, 35, 0.98), rgba(12, 19, 26, 0.94));
  border-bottom: 1px solid rgba(184, 148, 85, 0.34);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 0.62rem 0;
  position: relative;
  top: auto;
}

.industrial-site-header .industrial-navbar::after {
  background: linear-gradient(90deg, transparent, var(--industrial-brass), transparent);
  bottom: -1px;
  content: '';
  height: 1px;
  left: 10%;
  opacity: 0.72;
  position: absolute;
  right: 10%;
}

.industrial-site-header .industrial-brand,
.home-premium .industrial-site-header .industrial-brand {
  align-items: center;
  color: var(--industrial-ivory);
  display: inline-flex;
  gap: 0.85rem;
  letter-spacing: 0;
  padding: 0;
}

.industrial-site-header .brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #d8c08a, #8c6b37);
  border-radius: 16px 4px 16px 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 28px rgba(0, 0, 0, 0.22);
  color: #101923;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 46px;
}

.industrial-site-header .brand-logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 52px;
  justify-content: center;
}

.industrial-site-header .brand-logo img {
  display: block;
  max-height: 52px;
  max-width: 150px;
  object-fit: contain;
  width: auto;
}

.industrial-site-header .brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.industrial-site-header .brand-copy strong,
.home-premium .industrial-site-header .brand-copy strong {
  color: var(--industrial-ivory);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.industrial-site-header .brand-copy strong span,
.home-premium .industrial-site-header .brand-copy strong span {
  color: var(--industrial-brass-strong);
}

.industrial-site-header .brand-copy small {
  color: var(--industrial-muted);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 0.38rem;
  text-transform: uppercase;
}

.industrial-site-header .industrial-menu-wrap .navbar-nav {
  align-items: center;
  background: rgba(244, 239, 229, 0.055);
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 999px;
  gap: 0.2rem;
  padding: 0.34rem;
}

.industrial-site-header .industrial-menu-wrap .nav-link,
.home-premium .industrial-site-header .industrial-menu-wrap .nav-link {
  border-radius: 999px;
  color: rgba(244, 239, 229, 0.74) !important;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 0.86rem 1rem !important;
  text-transform: uppercase;
}

.industrial-site-header .industrial-menu-wrap .nav-link:hover,
.industrial-site-header .industrial-menu-wrap .nav-link.active,
.home-premium .industrial-site-header .industrial-menu-wrap .nav-link:hover,
.home-premium .industrial-site-header .industrial-menu-wrap .nav-link.active {
  background: rgba(184, 148, 85, 0.18);
  color: var(--industrial-ivory) !important;
}

.industrial-site-header .industrial-menu-wrap .nav-link.active::after,
.home-premium .industrial-site-header .industrial-menu-wrap .nav-link.active::after {
  display: none;
}

.industrial-site-header .dropdown-menu {
  background: rgba(13, 21, 29, 0.98);
  border: 1px solid rgba(184, 148, 85, 0.25);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  margin-top: 0.75rem;
  min-width: 230px;
  overflow: hidden;
  padding: 0.55rem;
}

.industrial-site-header .dropdown-item {
  border-radius: 12px;
  color: rgba(244, 239, 229, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.78rem 0.9rem;
}

.industrial-site-header .dropdown-item:hover,
.industrial-site-header .dropdown-item:focus {
  background: rgba(184, 148, 85, 0.18);
  color: var(--industrial-ivory);
}

.industrial-site-header .nav-cta .btn-primary-main,
.home-premium .industrial-site-header .nav-cta .btn-primary-main {
  align-items: center;
  background: linear-gradient(135deg, #d8c08a, #9b7337);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(139, 105, 52, 0.26);
  color: #101923;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.48rem;
  letter-spacing: 0.12em;
  padding: 0.92rem 1.18rem;
  text-transform: uppercase;
}

.industrial-site-header .nav-cta .btn-primary-main:hover,
.home-premium .industrial-site-header .nav-cta .btn-primary-main:hover {
  background: linear-gradient(135deg, #f0d69b, #b89455);
  color: #101923;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .industrial-site-header .industrial-navbar,
  .home-premium .industrial-site-header .industrial-navbar {
    padding: 0.78rem 0;
  }

  .industrial-site-header .brand-mark {
    border-radius: 13px 4px 13px 4px;
    height: 40px;
    width: 40px;
  }

  .industrial-site-header .brand-copy strong,
  .home-premium .industrial-site-header .brand-copy strong {
    font-size: 1.06rem;
  }

  .industrial-site-header .brand-copy small {
    font-size: 0.56rem;
  }

  .industrial-site-header .navbar-collapse {
    background: transparent;
    padding: 1rem 0 0.35rem;
  }

  .industrial-site-header .industrial-menu-wrap {
    width: 100%;
  }

  .industrial-site-header .industrial-menu-wrap .navbar-nav {
    align-items: stretch;
    background: rgba(244, 239, 229, 0.06);
    border-radius: 24px;
    padding: 0.55rem;
    width: 100%;
  }

  .industrial-site-header .industrial-menu-wrap .nav-link,
  .home-premium .industrial-site-header .industrial-menu-wrap .nav-link {
    border-bottom: 0;
    justify-content: space-between;
    padding: 0.96rem 1rem !important;
  }

  .industrial-site-header .industrial-menu-wrap .nav-link.active {
    border-left: 0;
  }

  .industrial-site-header .nav-cta,
  .industrial-site-header .nav-cta .btn-primary-main {
    width: 100%;
  }

  .industrial-site-header .nav-cta .btn-primary-main {
    justify-content: center;
  }
}

/* Theme Builder header menu support */
.industrial-site-header .industrial-menu-wrap .cms-menu {
  align-items: center;
  background: rgba(244, 239, 229, 0.055);
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 999px;
  color: rgba(244, 239, 229, 0.74);
  gap: 0.2rem;
  padding: 0.34rem;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a {
  border-radius: 999px;
  color: rgba(244, 239, 229, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  min-height: 0;
  padding: 0.86rem 1rem;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a::after {
  display: none;
}

.industrial-site-header .industrial-menu-wrap .cms-menu > .cms-menu-item:hover > a,
.industrial-site-header .industrial-menu-wrap .cms-menu > .cms-menu-item:focus-within > a,
.industrial-site-header .industrial-menu-wrap .cms-menu .nav-highlight > a {
  background: rgba(184, 148, 85, 0.18);
  box-shadow: none;
  color: var(--industrial-ivory);
  transform: none;
}

@media (max-width: 991px) {
  .industrial-site-header .industrial-menu-wrap .cms-menu {
    align-items: stretch;
    border-radius: 24px;
    flex-direction: column;
    width: 100%;
  }
}

/* Final visibility guard for dynamic menu inside Theme Builder header */
.industrial-site-header .industrial-menu-wrap,
.industrial-site-header .industrial-menu-wrap .cms-menu,
.industrial-site-header .industrial-menu-wrap .cms-menu-item,
.industrial-site-header .industrial-menu-wrap .cms-menu a {
  opacity: 1 !important;
  visibility: visible !important;
}

.industrial-site-header .industrial-menu-wrap {
  align-items: center !important;
  display: flex !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a {
  color: #f4efe5 !important;
  display: inline-flex !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.industrial-site-header .nav-cta {
  flex: 0 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Premium navigation polish */
.industrial-site-header .industrial-navbar .container {
  gap: clamp(1rem, 2vw, 2rem);
}

.industrial-site-header .navbar-collapse > .ml-auto {
  gap: 1rem;
}

.industrial-site-header .industrial-menu-wrap {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(244, 239, 229, 0.13);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 0.28rem;
}

.industrial-site-header .industrial-menu-wrap .cms-menu {
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px !important;
  gap: 0.18rem !important;
  padding: 0 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu-item {
  isolation: isolate;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a {
  background: transparent !important;
  border: 1px solid transparent;
  border-radius: 999px !important;
  color: rgba(244, 239, 229, 0.78) !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
  min-height: 42px !important;
  padding: 0.9rem 1.12rem !important;
  position: relative;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a::before {
  background: linear-gradient(135deg, rgba(216, 192, 138, 0.95), rgba(140, 107, 55, 0.95));
  border-radius: inherit;
  content: '';
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: -1;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a:hover,
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:focus-within > a {
  border-color: rgba(216, 192, 138, 0.34);
  color: #101923 !important;
  transform: translateY(-1px) !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu a:hover::before,
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:focus-within > a::before {
  opacity: 1;
  transform: scale(1);
}

.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:first-child > a {
  color: #f4efe5 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:first-child > a::after {
  background: #d8c08a;
  border-radius: 999px;
  content: '';
  display: block !important;
  height: 4px;
  left: 50%;
  opacity: 0.95;
  position: absolute;
  top: calc(100% + 5px);
  transform: translateX(-50%);
  width: 18px;
}

.industrial-site-header .industrial-menu-wrap .cms-submenu {
  background: rgba(10, 17, 24, 0.98) !important;
  border: 1px solid rgba(216, 192, 138, 0.22) !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  padding: 0.55rem !important;
}

.industrial-site-header .industrial-menu-wrap .cms-submenu a {
  border-radius: 14px !important;
  color: rgba(244, 239, 229, 0.78) !important;
  justify-content: flex-start !important;
  min-height: 0 !important;
  padding: 0.82rem 0.95rem !important;
}

.industrial-site-header .industrial-menu-wrap .cms-submenu a:hover {
  color: #101923 !important;
}

.industrial-site-header .nav-cta .btn-primary-main {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  min-height: 46px;
  padding-left: 1.28rem !important;
  padding-right: 1.28rem !important;
}

@media (max-width: 991px) {
  .industrial-site-header .navbar-collapse > .ml-auto {
    gap: 0.8rem;
  }

  .industrial-site-header .industrial-menu-wrap {
    border-radius: 24px;
    padding: 0.5rem;
    width: 100%;
  }

  .industrial-site-header .industrial-menu-wrap .cms-menu {
    flex-direction: column !important;
    gap: 0.35rem !important;
    width: 100%;
  }

  .industrial-site-header .industrial-menu-wrap .cms-menu a {
    justify-content: space-between !important;
    min-height: 46px !important;
    width: 100% !important;
  }

  .industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:first-child > a::after {
    display: none !important;
  }
}

/* Real active state for CMS dynamic menu */
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.is-active > a,
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.has-active-child > a {
  background: linear-gradient(135deg, rgba(216, 192, 138, 0.96), rgba(140, 107, 55, 0.96)) !important;
  border-color: rgba(216, 192, 138, 0.4) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 26px rgba(139, 105, 52, 0.24) !important;
  color: #101923 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.is-active > a::before,
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.has-active-child > a::before {
  opacity: 0 !important;
}

.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.is-active > a::after,
.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.has-active-child > a::after {
  background: #f4efe5;
  border-radius: 999px;
  content: '';
  display: block !important;
  height: 4px;
  left: 50%;
  opacity: 0.95;
  position: absolute;
  top: calc(100% + 5px);
  transform: translateX(-50%);
  width: 18px;
}

.industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item:first-child:not(.is-active):not(.has-active-child) > a::after {
  display: none !important;
}

@media (max-width: 991px) {
  .industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.is-active > a::after,
  .industrial-site-header .industrial-menu-wrap .cms-menu .cms-menu-item.has-active-child > a::after {
    display: none !important;
  }
}

/* Refined dynamic header menu */
.industrial-site-header .industrial-navbar .container {
  align-items: center;
}

.industrial-site-header .navbar-collapse > .ml-auto {
  align-items: center;
  gap: clamp(0.72rem, 1.4vw, 1.2rem);
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap {
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.055), rgba(244, 239, 229, 0.028));
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(244, 239, 229, 0.11), inset 0 -1px 0 rgba(184, 148, 85, 0.16);
  display: flex;
  padding: 0;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .navbar-nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-item {
  align-items: center;
  display: flex;
  position: relative;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(244, 239, 229, 0.76) !important;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  min-height: 54px;
  padding: 1rem 1.14rem !important;
  position: relative;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link::before {
  background: linear-gradient(180deg, var(--industrial-brass), rgba(184, 148, 85, 0.62));
  border: 0;
  content: '';
  display: block;
  inset: 0 auto 0 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  transform: none;
  transition: opacity 180ms ease;
  width: 2px;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-toggle::after {
  border-left: 0.22em solid transparent;
  border-right: 0.22em solid transparent;
  border-top: 0.28em solid currentColor;
  bottom: auto;
  display: inline-block;
  height: 0;
  margin-left: 0.44rem;
  opacity: 0.72;
  position: static;
  transform: none;
  width: 0;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link:hover,
.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link:focus {
  background: rgba(244, 239, 229, 0.075);
  color: var(--industrial-ivory) !important;
  box-shadow: inset 0 -1px 0 rgba(216, 192, 138, 0.18);
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link.active {
  background: linear-gradient(180deg, rgba(184, 148, 85, 0.28), rgba(184, 148, 85, 0.16));
  box-shadow: inset 0 1px 0 rgba(244, 239, 229, 0.14), inset 0 -1px 0 rgba(184, 148, 85, 0.38);
  color: var(--industrial-ivory) !important;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link:hover::before,
.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link:focus::before,
.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link.active::before {
  opacity: 1;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-menu {
  background: rgba(10, 17, 24, 0.98);
  border: 1px solid rgba(216, 192, 138, 0.2);
  border-radius: 0;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  margin-top: 0.56rem;
  padding: 0.42rem;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-item {
  border-radius: 0;
  color: rgba(244, 239, 229, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
  padding: 0.82rem 0.94rem;
}

.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-item:hover,
.industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-item:focus {
  background: rgba(216, 192, 138, 0.13);
  color: var(--industrial-ivory);
}

@media (max-width: 991px) {
  .industrial-site-header .navbar-collapse > .ml-auto {
    align-items: stretch;
    gap: 0.75rem;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap {
    background: rgba(244, 239, 229, 0.055);
    border-radius: 0;
    padding: 0;
    width: 100%;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .navbar-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0.18rem;
    width: 100%;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-item {
    display: block;
    width: 100%;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link {
    justify-content: space-between;
    min-height: 50px;
    padding: 0.94rem 1rem !important;
    width: 100%;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .nav-link::before {
    display: none;
  }

  .industrial-site-header .dynamic-nav-wrapper.industrial-menu-wrap .dropdown-menu {
    background: rgba(244, 239, 229, 0.055);
    border-radius: 0;
    box-shadow: none;
    margin: 0.22rem 0 0.35rem;
    position: static;
    width: 100%;
  }
}
