/* =========================================================
   MAHWAR ALHMAYAH — Oil & Grease Trade
   Industrial / heavy-duty visual identity
   Palette from logo: oxblood maroon flame · steel-grey gear · flame orange
   Fonts: Montserrat (display) + Open Sans (body)
   ========================================================= */

:root {
  --primary-color: #7A1518;   /* oxblood maroon (flame base) */
  --primary-light: #9C2226;
  --secondary-color: #3B3F44; /* steel charcoal (gear) */
  --secondary-light: #565A5F;
  --accent-color: #E87722;    /* flame orange */
  --accent-dark: #C25E12;
  --amber: #F4B23E;
  --text-dark: #23262A;
  --text-muted: #6B7178;
  --light-bg: #F5F3F1;        /* warm off-white */
  --steel-bg: #2C2F33;        /* dark steel band */
  --line: #E4E0DC;
  --white: #FFFFFF;
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, 'Segoe UI', sans-serif;
}

* { 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.75;
  background: var(--white);
}

a { text-decoration: none; transition: all .25s ease; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.2px;
}

.section-padding { padding: 100px 0; }
@media (max-width: 767px) { .section-padding { padding: 60px 0; } }

/* Section tag: orange uppercase with a leading flame bar */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 3px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 767px) { .section-title { font-size: 1.8rem; } }

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

.lead-muted { color: var(--text-muted); font-size: 1.05rem; }

/* ---------------- BUTTONS (sharp, industrial) ---------------- */
.btn-brand {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: .8px;
  font-size: .82rem;
  padding: 13px 30px;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-brand:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,119,34,.32);
}
.btn-brand-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .82rem;
  padding: 11px 28px;
  border-radius: 2px;
}
.btn-brand-outline:hover { background-color: var(--white); color: var(--secondary-color); }
.btn-brand-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .82rem;
  padding: 13px 30px;
  border-radius: 2px;
}
.btn-brand-secondary:hover { background-color: var(--primary-color); color: var(--white); transform: translateY(-2px); }

/* ---------------- TOP BAR ---------------- */
.top-bar {
  background-color: var(--secondary-color);
  color: #D7D9DB;
  font-size: 0.84rem;
  padding: 9px 0;
  letter-spacing: .3px;
}
.top-bar a { color: #D7D9DB; }
.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;
  box-shadow: 0 1px 0 var(--line), 0 6px 22px rgba(0,0,0,.05);
  border-bottom: 3px solid var(--primary-color);
  transition: all .3s ease;
}
.main-navbar.scrolled { padding: 6px 0; }
.main-navbar .navbar-brand img { height: 54px; transition: height .3s ease; }
.main-navbar.scrolled .navbar-brand img { height: 46px; }
.main-navbar .nav-link {
  color: var(--secondary-color);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  margin: 0 14px;
  padding: 8px 0 !important;
  position: relative;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover { color: var(--primary-color); }
.main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background-color: var(--accent-color);
}
.main-navbar .btn-brand { font-size: 0.76rem; white-space: nowrap; padding: 10px 20px; }

/* ---------------- HERO SLIDER (split-panel style) ---------------- */
.hero-slider { position: relative; }
.hero-slide {
  height: 90vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
/* dark base + maroon angled left panel */
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,47,51,.94) 0%, rgba(44,47,51,.82) 38%, rgba(44,47,51,.35) 70%, rgba(44,47,51,.15) 100%);
}
.hero-slide::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 42%;
  background: linear-gradient(120deg, rgba(122,21,24,.82), rgba(122,21,24,0));
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-slide .hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--amber);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero-slide .hero-tag::before { content:''; width: 34px; height: 3px; background: var(--accent-color); }
.hero-slide h1 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 720px;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.hero-slide p {
  color: #E9E6E3;
  font-size: 1.15rem;
  max-width: 560px;
  margin: 22px 0 34px;
}
@media (max-width: 767px) {
  .hero-slide { height: 84vh; min-height: 480px; }
  .hero-slide h1 { font-size: 2.15rem; }
  .hero-slide p { font-size: 1rem; }
  .hero-slide::after { width: 100%; clip-path: none; opacity:.5; }
}
.hero-slider .carousel-indicators { bottom: 24px; margin-left: 12%; justify-content: flex-start; }
.hero-slider .carousel-indicators button {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,.7);
  width: 12px; height: 12px; border-radius: 50%;
  transition: all .25s ease;
}
.hero-slider .carousel-indicators button.active { background-color: var(--accent-color); border-color: var(--accent-color); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 6%; opacity: 0.55; }

/* ---------------- PAGE HERO (sub pages) ---------------- */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,47,51,.93) 0%, rgba(44,47,51,.72) 60%, rgba(122,21,24,.55) 100%);
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 5px; background: var(--accent-color);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: 2.9rem; font-weight: 800; margin-bottom: 10px; }
.page-hero .breadcrumb-custom { color: var(--amber); font-family: var(--font-head); font-weight: 600; letter-spacing: .5px; font-size: .92rem; }
.page-hero .breadcrumb-custom a { color: #E9E6E3; }
.page-hero .breadcrumb-custom a:hover { color: var(--accent-color); }
@media (max-width: 767px){ .page-hero { height: 250px; } .page-hero h1 { font-size: 2rem; } }

/* ---------------- ABOUT IMAGE ---------------- */
.about-img-wrap { position: relative; padding-left: 14px; padding-bottom: 14px; }
.about-img-wrap::before {
  content: '';
  position: absolute; left: 0; top: 26px; bottom: 0;
  width: 60%; border-left: 4px solid var(--accent-color); border-bottom: 4px solid var(--accent-color);
  z-index: 0;
}
.about-img-wrap img {
  border-radius: 3px;
  width: 100%;
  position: relative; z-index: 1;
  box-shadow: 0 22px 44px rgba(44,47,51,.22);
}
.about-img-wrap .badge-float {
  position: absolute;
  bottom: -22px; right: -18px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 26px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(122,21,24,.35);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}
@media (max-width: 991px) { .about-img-wrap .badge-float { right: 10px; } }
.about-img-wrap .badge-float .num { font-size: 2rem; font-weight: 800; color: var(--amber); display: block; letter-spacing: 0; }

/* checklist */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .95rem;
}
.check-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0; top: 1px;
  color: var(--accent-color);
  font-size: 1.15rem;
  font-weight: 400;
}

/* ---------------- WHY CHOOSE US (numbered flat cards) ---------------- */
.feature-card {
  background-color: var(--white);
  border-radius: 3px;
  padding: 34px 28px 30px;
  height: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  position: relative;
  transition: all .3s ease;
  counter-increment: feat;
}
.feature-card::after {
  content: counter(feat, decimal-leading-zero);
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--light-bg);
  line-height: 1;
  transition: color .3s ease;
}
.feature-card:hover {
  border-top-color: var(--accent-color);
  box-shadow: 0 18px 38px rgba(44,47,51,.12);
  transform: translateY(-5px);
}
.feature-card:hover::after { color: rgba(232,119,34,.16); }
.row { counter-reset: feat; }
.feature-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 3px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.feature-card:nth-child(2n) .icon-wrap { background-color: var(--secondary-color); }
.feature-card h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary-color); }
.feature-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0; }

/* ---------------- CTA (dark steel band) ---------------- */
.cta-section {
  background-color: var(--steel-bg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,47,51,.95) 0%, rgba(44,47,51,.82) 50%, rgba(122,21,24,.7) 100%);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: #D9D6D3; margin-bottom: 0; font-size: 1.08rem; }

/* ---------------- PRODUCTS / CATEGORY CARDS ---------------- */
.product-card {
  background-color: var(--white);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s ease;
  height: 100%;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: var(--accent-color); z-index: 3; transition: width .35s ease;
}
.product-card:hover::before { width: 100%; }
.product-card:hover { box-shadow: 0 18px 40px rgba(44,47,51,.16); transform: translateY(-5px); }
.product-card .product-img { height: 240px; overflow: hidden; position: relative; }
.product-card .product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,47,51,0) 55%, rgba(44,47,51,.25) 100%);
}
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-card .product-body { padding: 22px 24px; display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.product-card .product-body h5 { margin-bottom: 0; font-size: 1.12rem; font-weight: 700; color: var(--secondary-color); transition: color .25s ease; }
.product-card .product-body::after { content: '\F138'; font-family:'bootstrap-icons'; color: var(--accent-color); font-size: 1.2rem; transition: transform .25s ease; }
.product-card:hover .product-body::after { transform: translateX(5px); }

/* ---------------- MISSION / VISION (steel cards) ---------------- */
.mv-card {
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 3px;
  padding: 42px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--accent-color);
}
.mv-card:nth-child(2), .mv-card.alt { background-color: var(--primary-color); border-left-color: var(--amber); }
.mv-card::after {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.mv-card i { font-size: 2.4rem; color: var(--accent-color); margin-bottom: 18px; display: block; }
.mv-card:nth-child(2) i, .mv-card.alt i { color: var(--amber); }
.mv-card h4 { color: var(--white); font-weight: 800; margin-bottom: 14px; }
.mv-card p { color: rgba(255,255,255,.9); margin-bottom: 0; position: relative; z-index: 1; }

/* value-pill (kept defined though not used unless core values present) */
.value-pill {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
}
.value-pill i {
  font-size: 1.6rem; color: var(--white);
  background-color: var(--accent-color);
  width: 56px; height: 56px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.value-pill h6 { font-weight: 700; margin-bottom: 8px; color: var(--secondary-color); }
.value-pill p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ---------------- STAT STRIP (home extra band) ---------------- */
.stat-strip { background: var(--primary-color); }
.stat-item { text-align: center; color: var(--white); padding: 14px 0; }
.stat-item .stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--amber); line-height: 1; }
.stat-item .stat-label { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; color: rgba(255,255,255,.88); }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.16); }
@media (max-width: 767px){ .stat-item + .stat-item { border-left: none; } }

/* ---------------- CONTACT ---------------- */
.contact-info-card {
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 3px;
  padding: 42px 34px;
  height: 100%;
  border-top: 4px solid var(--accent-color);
}
.contact-info-card h4 { color: var(--white); font-weight: 800; margin-bottom: 26px; }
.contact-info-item { display: flex; align-items: flex-start; margin-bottom: 26px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-right: 16px; flex-shrink: 0; font-size: 1.15rem;
}
.contact-info-item .ci-text small { display: block; color: var(--amber); text-transform: uppercase; letter-spacing: 1.2px; font-size: 0.7rem; font-family: var(--font-head); font-weight: 600; margin-bottom: 4px; }
.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);
  border-radius: 3px;
  padding: 42px;
}
.contact-form-wrap .form-label { font-family: var(--font-head); font-size: .82rem; color: var(--secondary-color); }
.contact-form-wrap .form-control {
  border: 1px solid #D8D3CE;
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  background: var(--light-bg);
}
.contact-form-wrap .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(232,119,34,.14);
  background: var(--white);
}

/* ---------------- FOOTER ---------------- */
.site-footer { background-color: var(--steel-bg); color: #B7BABD; }
.site-footer .footer-top { padding: 74px 0 44px; border-top: 4px solid var(--primary-color); }
.site-footer h5 {
  color: var(--white);
  font-size: 1.02rem; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.site-footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background-color: var(--accent-color); }
.site-footer .footer-brand-text {
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px;
}
.site-footer .footer-brand-text img { height: 44px; }
.site-footer p { font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer .footer-top ul li a { color: #B7BABD; font-size: 0.93rem; }
.site-footer .footer-top ul li a:hover { color: var(--accent-color); padding-left: 5px; }
.site-footer .footer-top > .container > .row > div:nth-child(3) ul li { display: flex; align-items: flex-start; }
.site-footer .footer-top i { color: var(--accent-color); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; font-size: 0.85rem; background: rgba(0,0,0,.15);
}
.footer-bottom a { color: var(--accent-color); }

/* ---------------- BACK TO TOP ---------------- */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  background-color: var(--accent-color); color: var(--white);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 999; font-size: 1.2rem;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--accent-dark); transform: translateY(-3px); }

.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: 42px; }
  .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); 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%; }
  .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 ---------------- */
.main-navbar .dropdown-menu {
  border: none; border-radius: 3px;
  box-shadow: 0 14px 34px rgba(44,47,51,.18);
  padding: 10px; margin-top: 8px; min-width: 240px;
  border-top: 3px solid var(--accent-color);
}
.main-navbar .dropdown-item { color: var(--secondary-color); font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 10px 16px; border-radius: 2px; }
.main-navbar .dropdown-item:hover, .main-navbar .dropdown-item:focus { background-color: var(--light-bg); color: var(--primary-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; }
}

/* ---------------- CATEGORY LINK / ITEM CARDS ---------------- */
.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(--primary-color); }

.item-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
  position: relative;
}
.item-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent-color); transform: scaleY(0); transform-origin: top; transition: transform .35s ease; z-index: 2;
}
.item-card:hover::before { transform: scaleY(1); }
.item-card:hover { box-shadow: 0 16px 34px rgba(44,47,51,.14); transform: translateY(-4px); }
.item-card .item-img { height: 210px; overflow: hidden; }
.item-card .item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.item-card:hover .item-img img { transform: scale(1.08); }
.item-card .item-body { padding: 20px 22px; }
.item-card .item-body h5 { margin-bottom: 0; font-size: 1.05rem; font-weight: 700; color: var(--secondary-color); }

/* intro block for products/category grids */
.grid-intro { max-width: 640px; }
