/* =========================================================
   STRATONIA COMPANY FOR RAW MATERIALS TRADING FZE LLC
   Site Stylesheet — engineered monochrome-blue system
   Palette derived from the STRATONIA logo mark (#0072BC)
   ========================================================= */

:root {
  --primary-color: #06355A;     /* deep steel navy — dark shade of logo blue */
  --primary-light: #0A4F87;
  --secondary-color: #0072BC;   /* exact logo blue */
  --secondary-light: #2E93D6;
  --accent-color: #00BFE8;      /* bright azure signal */
  --accent-dark: #009BC1;
  --deep-color: #04263D;        /* darkest surface */
  --text-dark: #12212E;
  --text-muted: #5A6B7B;
  --light-bg: #EFF4F9;
  --line-color: #DCE5EE;
  --white: #FFFFFF;
  --font-head: 'Archivo', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 3px;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.72;
  font-size: 1.02rem;
}

a { text-decoration: none; transition: all .22s ease; }
img { max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--primary-color);
}

p { color: var(--text-muted); }

/* ---------- rhythm ---------- */
.section-padding { padding: 84px 0; }
@media (max-width: 767px) { .section-padding { padding: 54px 0; } }

.bg-light-soft { background-color: var(--light-bg); }

.section-dark {
  background-color: var(--primary-color);
  background-image: linear-gradient(160deg, #06355A 0%, #04263D 100%);
}
.section-dark h2, .section-dark h5, .section-dark h6 { color: var(--white); }
.section-dark p { color: #B9CBDB; }

/* ---------- section tag: rule + uppercase ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
  flex-shrink: 0;
}
.text-center .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
  flex-shrink: 0;
}
.section-dark .section-tag { color: var(--accent-color); }

.section-title {
  font-size: 2.15rem;
  line-height: 1.22;
  margin-bottom: 1rem;
}
@media (max-width: 767px) { .section-title { font-size: 1.6rem; } }

/* =========================================================
   BUTTONS — sharp cornered
   ========================================================= */
.btn-brand,
.btn-brand-outline,
.btn-brand-secondary {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .4px;
  border-radius: var(--radius);
  transition: all .22s ease;
}
.btn-brand {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
  padding: 11px 30px;
}
.btn-brand:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.btn-brand-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
  padding: 11px 28px;
}
.btn-brand-outline:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}
.btn-brand-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 11px 30px;
}
.btn-brand-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background-color: var(--deep-color);
  color: #C4D5E4;
  font-size: 0.82rem;
  padding: 9px 0;
  letter-spacing: .2px;
}
.top-bar a { color: #C4D5E4; }
.top-bar a:hover { color: var(--accent-color); }
.top-bar i { margin-right: 7px; color: var(--accent-color); }

/* =========================================================
   NAVBAR
   ========================================================= */
.main-navbar {
  background-color: var(--white);
  padding: 12px 0;
  border-top: 3px solid var(--secondary-color);
  box-shadow: 0 1px 0 var(--line-color);
  transition: all .3s ease;
}
.main-navbar.scrolled {
  padding: 7px 0;
  box-shadow: 0 4px 20px rgba(6,53,90,0.10);
}
.main-navbar .navbar-brand { padding: 0; }
.main-navbar .navbar-brand img { height: 48px; }
.main-navbar .nav-link {
  font-family: var(--font-head);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.94rem;
  margin: 0 14px;
  padding: 8px 0 !important;
  position: relative;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover { color: var(--secondary-color); }
.main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background-color: var(--accent-color);
}
.main-navbar .btn-brand { font-size: 0.8rem; padding: 9px 18px; white-space: nowrap; }
.navbar-toggler { border-color: var(--line-color); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   HERO SLIDER — split panel layout
   ========================================================= */
.hero-slider { position: relative; }
.hero-slide {
  height: 90vh;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
/* angled solid navy panel on the left, photo bleeds right */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(4,38,61,0.97) 0%,
    rgba(6,53,90,0.95) 42%,
    rgba(6,53,90,0.72) 58%,
    rgba(6,53,90,0.18) 78%,
    rgba(6,53,90,0.05) 100%);
}
.hero-slide::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--accent-color);
  z-index: 2;
}
.hero-slide .container { position: relative; z-index: 3; }
.hero-slide .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}
.hero-slide .hero-tag::before {
  content: '';
  width: 34px; height: 2px;
  background-color: var(--accent-color);
}
.hero-slide h1 {
  color: var(--white);
  font-size: 3.35rem;
  line-height: 1.1;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 0;
}
.hero-slide p {
  color: #CFDDE9;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 20px 0 34px;
}
@media (max-width: 991px) {
  .hero-slide h1 { font-size: 2.5rem; }
}
@media (max-width: 767px) {
  .hero-slide { height: 78vh; min-height: 470px; }
  .hero-slide::before {
    background: linear-gradient(180deg, rgba(4,38,61,0.93) 0%, rgba(6,53,90,0.88) 100%);
  }
  .hero-slide h1 { font-size: 2rem; }
  .hero-slide p { font-size: 1rem; margin-bottom: 26px; }
  .hero-slide .btn { display: block; width: 100%; margin: 0 0 10px 0 !important; }
}
/* bar indicators, bottom-left aligned */
.hero-slider .carousel-indicators {
  justify-content: flex-start;
  margin-left: 0; margin-right: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 90%);
  bottom: 34px;
}
.hero-slider .carousel-indicators button {
  width: 44px; height: 3px;
  border-radius: 0;
  background-color: rgba(255,255,255,0.35);
  border: none;
  opacity: 1;
  margin: 0 8px 0 0;
}
.hero-slider .carousel-indicators button.active { background-color: var(--accent-color); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 6%; opacity: 0.55; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }

/* =========================================================
   PAGE HERO — compact strip
   ========================================================= */
.page-hero {
  height: 268px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,38,61,0.94) 0%, rgba(6,53,90,0.82) 55%, rgba(6,53,90,0.55) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--accent-color);
  z-index: 2;
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.page-hero .breadcrumb-custom {
  color: var(--accent-color);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: .6px;
}
.page-hero .breadcrumb-custom a { color: #CFDDE9; }
.page-hero .breadcrumb-custom a:hover { color: var(--accent-color); }
@media (max-width: 767px) {
  .page-hero { height: 210px; }
  .page-hero h1 { font-size: 1.75rem; }
}

/* =========================================================
   ABOUT BLOCKS
   ========================================================= */
.about-img-wrap { position: relative; padding: 0 0 18px 18px; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 62%; height: 72%;
  border: 3px solid var(--accent-color);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.about-img-wrap .badge-float {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-img-wrap .badge-float .num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  .about-img-wrap .badge-float { padding: 12px 18px; }
  .about-img-wrap .badge-float .num { font-size: 1.4rem; }
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   WHY CHOOSE US — flat cards on dark band
   ========================================================= */
.feature-card {
  background-color: var(--white);
  border: 1px solid var(--line-color);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  transition: all .25s ease;
}
.feature-card:hover {
  border-left-color: var(--accent-color);
  transform: translateY(-4px);
}
.feature-card .icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background-color: rgba(0,114,188,0.10);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h5 {
  font-size: 1.06rem;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.94rem; margin-bottom: 0; }

/* dark band variant */
.section-dark .feature-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid transparent;
}
.section-dark .feature-card:hover {
  background-color: rgba(255,255,255,0.07);
  border-left-color: var(--accent-color);
}
.section-dark .feature-card .icon-wrap {
  background-color: rgba(0,191,232,0.14);
  color: var(--accent-color);
}
.section-dark .feature-card h5 { color: var(--white); }
.section-dark .feature-card p { color: #A9BDCE; }

/* =========================================================
   CTA SECTION — two-tone with azale rule
   ========================================================= */
.cta-section {
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-color);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,38,61,0.95) 0%, rgba(6,53,90,0.90) 50%, rgba(0,114,188,0.72) 100%);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white);
  font-size: 2.05rem;
  margin-bottom: 10px;
}
.cta-section p { color: #C4D5E4; max-width: 660px; margin-left: auto; margin-right: auto; }
.cta-section .btn-brand {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--deep-color);
}
.cta-section .btn-brand:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}
@media (max-width: 767px) { .cta-section h2 { font-size: 1.55rem; } }

/* =========================================================
   PRODUCT / ITEM CARDS
   ========================================================= */
.product-card,
.item-card {
  background-color: var(--white);
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all .28s ease;
}
.product-card:hover,
.item-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(6,53,90,0.10);
}
.product-card .product-img,
.item-card .item-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card .product-img img,
.item-card .item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img,
.item-card:hover .item-img img { transform: scale(1.06); }
.product-card .product-body,
.item-card .item-body {
  padding: 20px 22px;
  border-top: 3px solid var(--secondary-color);
}
.product-card .product-body h5,
.item-card .item-body h5 {
  margin-bottom: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.product-card ul.item-list { list-style: none; padding: 0; margin: 12px 0 0; font-size: 0.9rem; color: var(--text-muted); }
.product-card ul.item-list li { padding: 4px 0 4px 18px; position: relative; }
.product-card ul.item-list li::before { content: '\2022'; color: var(--accent-color); position: absolute; left: 4px; }

/* category link wrapper (used when a client has categories) */
.category-card-link { display: block; color: inherit; text-decoration: none; }
.category-card-link .product-card { cursor: pointer; }
.category-card-link:hover .product-card h5 { color: var(--secondary-color); }
.category-card-link .category-count {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background-color: rgba(0,114,188,0.10);
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.category-card-link .product-body .browse-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--primary-color);
  margin-top: 12px; font-size: 0.9rem;
}
.category-card-link:hover .browse-link { color: var(--secondary-color); }
.category-card-link .browse-link i { transition: transform .25s ease; }
.category-card-link:hover .browse-link i { transform: translateX(4px); }

/* =========================================================
   MISSION / VISION / VALUES
   ========================================================= */
.mv-card {
  background-color: var(--white);
  border: 1px solid var(--line-color);
  border-top: 4px solid var(--secondary-color);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  transition: all .25s ease;
}
.mv-card:hover { border-top-color: var(--accent-color); box-shadow: 0 12px 30px rgba(6,53,90,0.09); }
.mv-card i {
  font-size: 1.7rem;
  color: var(--secondary-color);
  background-color: rgba(0,114,188,0.10);
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mv-card h4 { font-size: 1.28rem; margin-bottom: 12px; }
.mv-card p { margin-bottom: 0; font-size: 0.98rem; }

.value-pill {
  background-color: var(--white);
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all .25s ease;
}
.value-pill:hover { border-color: var(--secondary-color); transform: translateY(-4px); }
.value-pill i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  background-color: rgba(0,114,188,0.10);
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.value-pill h6 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.value-pill p { font-size: 0.88rem; margin-bottom: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-card {
  background-color: var(--primary-color);
  background-image: linear-gradient(160deg, #06355A 0%, #04263D 100%);
  color: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent-color);
  padding: 38px 30px;
  height: 100%;
}
.contact-info-card h4 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background-color: rgba(0,191,232,0.15);
  color: var(--accent-color);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-info-item .ci-text small {
  display: block;
  color: var(--accent-color);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-info-item .ci-text a,
.contact-info-item .ci-text span {
  color: var(--white);
  font-weight: 500;
  word-break: break-word;
}
.contact-info-item .ci-text a:hover { color: var(--accent-color); }

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 38px;
  height: 100%;
}
.contact-form-wrap h4 { font-size: 1.3rem; }
.contact-form-wrap .form-label { font-family: var(--font-head); font-size: 0.85rem; color: var(--primary-color); }
.contact-form-wrap .row > [class*='col-'] { padding-right: 10px; padding-left: 10px; }
.contact-form-wrap .row { margin-right: -10px; margin-left: -10px; }
.contact-form-wrap .form-control {
  border: 1px solid var(--line-color);
  background-color: #FAFCFE;
  padding: 11px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.12);
}
.contact-form-wrap .invalid-feedback { margin-top: -12px; margin-bottom: 10px; }
@media (max-width: 575px) { .contact-form-wrap { padding: 26px 20px; } }

.map-frame { border-radius: var(--radius); overflow: hidden; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--deep-color);
  color: #A9BDCE;
  border-top: 4px solid var(--secondary-color);
}
.site-footer .footer-top { padding: 64px 0 36px; }
.site-footer h5 {
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background-color: var(--accent-color);
}
.site-footer .footer-brand img { height: 60px; margin-bottom: 16px; }
.site-footer .footer-brand-text {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .6px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.site-footer .footer-brand-text img { height: 60px; flex-shrink: 0; }
.site-footer p { font-size: 0.92rem; color: #A9BDCE; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; font-size: 0.92rem; display: flex; align-items: flex-start; }
.site-footer ul li i { color: var(--accent-color); margin-top: 6px; flex-shrink: 0; }
.site-footer ul li a { color: #A9BDCE; }
.site-footer ul li a:hover { color: var(--accent-color); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 16px 0;
  font-size: 0.84rem;
  color: #8AA0B4;
}
.footer-bottom a { color: var(--accent-color); }

/* =========================================================
   MISC
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(6,53,90,0.28);
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
  font-size: 1.05rem;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--accent-color); color: var(--deep-color); }

.preloader-fade { animation: fadeInUp .7s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   MOBILE NAVBAR
   ========================================================= */
@media (max-width: 991.98px) {
  .top-bar { display: none; }
  .main-navbar .navbar-brand img { height: 38px; }
  .main-navbar .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
  }
  .main-navbar .navbar-collapse.show,
  .main-navbar .navbar-collapse.collapsing {
    padding: 10px 0 14px;
    border-top: 1px solid var(--line-color);
    margin-top: 8px;
  }
  .main-navbar .navbar-nav {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .main-navbar .navbar-nav .nav-link { margin: 0; padding: 10px 0 !important; }
  .main-navbar .navbar-nav .nav-item { width: 100%; }
  .main-navbar .nav-link.active::after { width: 34px; }
  .nav-products-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-cat-toggle {
    background: none;
    border: none;
    padding: 6px 8px;
    color: var(--primary-color);
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform .25s ease;
    line-height: 1;
  }
  .mobile-cat-toggle.open { transform: rotate(180deg); }
  .main-navbar .navbar-nav .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 4px 16px !important;
    margin-top: 0 !important;
    animation: none !important;
    display: none;
  }
  .main-navbar .navbar-nav .dropdown-menu.show { display: block; }
}

/* =========================================================
   PRODUCTS DROPDOWN (navbar)
   ========================================================= */
.main-navbar .dropdown-menu {
  border: 1px solid var(--line-color);
  border-top: 3px solid var(--secondary-color);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(6,53,90,0.14);
  padding: 8px;
  margin-top: 6px;
  min-width: 240px;
}
.main-navbar .dropdown-item {
  font-family: var(--font-head);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 9px 14px;
  border-radius: var(--radius);
}
.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background-color: rgba(0,114,188,0.08);
  color: var(--secondary-color);
}
.main-navbar .dropdown-toggle::after { vertical-align: 2px; }
@media (min-width: 992px) {
  .main-navbar .dropdown-menu { display: none; animation: fadeInUp .2s ease both; }
  .main-navbar .dropdown-menu.show { display: block; }
}
