/* ==========================================================================
   Scientific Equipments UK — Fashi-inspired Theme
   Mustard yellow + black + cream; Oswald headings + Mulish body
   ========================================================================== */

:root {
  /* Core palette */
  --yellow: #F5B921;          /* primary accent — Fashi mustard */
  --yellow-dark: #D9A41B;
  --yellow-soft: #FFF3D6;

  --ink: #1c1c1c;             /* near-black nav + dark sections */
  --ink-2: #252525;
  --ink-3: #111111;

  --body: #6f7172;            /* body text grey */
  --body-2: #999999;           /* meta / muted */
  --body-3: #b7b7b7;           /* placeholder */

  --bg: #ffffff;
  --bg-cream: #F5F1ED;         /* deal-of-week / hero panel */
  --bg-grey: #f6f6f6;          /* light panel */
  --line: #ebebeb;             /* hairline border */
  --line-2: #f0f0f0;
  --white: #ffffff;

  --sale: #e84545;             /* red SALE flag */

  /* Typography */
  --ff-head: 'Oswald', 'Arial Narrow', sans-serif;
  --ff-body: 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-italic: 'Cormorant Garamond', 'Georgia', serif;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Radius */
  --r: 2px;                    /* Fashi uses very tight radii */
}

/* GLOBAL BASE */
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: 0;
}

p { margin: 0 0 1em; color: var(--body); font-size: 16px; }

a { color: var(--ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--yellow); }

img { max-width: 100%; height: auto; }

/* ITALIC SERIF ACCENT — used inside large headings */
em.accent, .accent {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--yellow);
}

/* ==========================================================================
   BUTTONS — Fashi rectangular pill-y style
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-brand, .btn-primary, .btn-yellow {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}
.btn-brand:hover, .btn-primary:hover, .btn-yellow:hover {
  background: var(--yellow-dark); color: var(--white); border-color: var(--yellow-dark);
}

.btn-mint {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}
.btn-mint:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-outline-brand, .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-brand:hover, .btn-outline:hover {
  background: var(--ink); color: var(--white);
}

.btn-light, .btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-light:hover, .btn-dark:hover {
  background: var(--yellow); color: var(--white); border-color: var(--yellow);
}

.btn-outline-secondary {
  background: transparent; color: var(--body); border-color: var(--line);
}
.btn-outline-secondary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ==========================================================================
   TOPBAR — thin email + phone bar (white bg, dark text)
   ========================================================================== */

.se-topbar {
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.se-topbar a { color: var(--ink); transition: color .2s; }
.se-topbar a:hover { color: var(--yellow); }
.se-top-info { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.se-top-info span {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--body); font-size: 15px;
}
.se-top-info span i { color: var(--yellow); font-size: 16px; }
.se-social { display: inline-flex; gap: 14px; align-items: center; }
.se-social a {
  color: var(--ink); font-size: 15px;
}
.se-social a:hover { color: var(--yellow); }

/* ==========================================================================
   MID-HEADER — logo + search bar + cart
   ========================================================================== */

.se-midhead {
  padding: 26px 0;
  background: var(--white);
}
.se-midhead-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

/* Logo */
.se-logo {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--ff-head); font-weight: 700;
  font-size: 32px; color: var(--ink);
  letter-spacing: -0.01em;
}
.se-logo:hover { color: var(--ink); }
.se-logo .dot { color: var(--yellow); font-size: 32px; line-height: 1; margin-left: 1px; }

/* Search */
.se-search-bar {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  min-width: 280px;
  max-width: 720px;
}
.se-search-cat {
  background: var(--white);
  color: var(--ink);
  border: none;
  border-right: 1px solid var(--line);
  padding: 0 18px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  min-width: 150px;
}
.se-search-cat:focus { outline: none; }
.se-search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.se-search-input::placeholder { color: var(--body-3); }
.se-search-btn {
  background: var(--yellow);
  color: var(--white);
  border: none;
  padding: 0 22px;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.se-search-btn:hover { background: var(--ink); }

/* Cart cluster */
.se-cart-cluster {
  display: flex; align-items: center; gap: 18px;
}
.se-cart-icon {
  position: relative;
  color: var(--ink); font-size: 22px;
  display: inline-flex; align-items: center;
}
.se-cart-icon .se-cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--yellow);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--ff-body);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.se-cart-total {
  font-family: var(--ff-body); font-weight: 700;
  color: var(--ink); font-size: 16px;
}

/* ==========================================================================
   NAVBAR — black bar with yellow active
   ========================================================================== */

.se-navbar {
  background: var(--ink);
  padding: 0;
  position: sticky; top: 0; z-index: 1030;
}
.se-navbar .navbar-collapse { padding: 0; }
.se-navbar .navbar-nav { display: flex; flex-wrap: wrap; }
.se-navbar .navbar-nav .nav-item { display: flex; }
.se-navbar .navbar-nav .nav-link {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white) !important;
  padding: 18px 22px !important;
  transition: all .2s var(--ease);
  border-radius: 0;
  line-height: 1;
}
.se-navbar .navbar-nav .nav-link:hover {
  color: var(--yellow) !important;
}
.se-navbar .navbar-nav .nav-link.active {
  background: var(--yellow);
  color: var(--white) !important;
}
.se-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  margin: 10px 0;
  padding: 6px 12px;
  border-radius: var(--r);
}
.se-navbar .navbar-toggler:focus { box-shadow: none; }
.se-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.se-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 15px;
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 18px 22px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.se-nav-cta:hover { color: var(--yellow); }
.se-nav-cta-primary {
  background: var(--yellow); color: var(--white);
}
.se-nav-cta-primary:hover { background: var(--yellow-dark); color: var(--white); }

/* ==========================================================================
   HERO — cream panel with image right + sale roundel
   ========================================================================== */

.se-hero {
  background: var(--bg-cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.se-hero-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.se-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.se-hero h1 em.accent {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}
.se-hero-lead {
  font-size: 17px;
  color: var(--body);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.se-hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Sale roundel */
.se-hero-badge {
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-30%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.1;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(245,185,33,.25);
}
.se-hero-badge .lbl { font-size: 15px; font-weight: 500; }
.se-hero-badge .pct { font-size: 28px; font-weight: 700; margin-top: 2px; }

/* Hero image */
.se-hero-visual {
  position: relative; text-align: center;
}
.se-hero-img {
  position: relative; display: inline-block;
}
.se-hero-img::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  z-index: 0;
}
.se-hero-img img { position: relative; z-index: 2; max-width: 100%; }

/* Hero stats (compatibility) */
.se-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); padding-top: 28px;
  max-width: 520px; margin-top: 36px;
}
.se-hero-stats > div { padding: 0 18px; border-right: 1px solid var(--line); }
.se-hero-stats > div:last-child { border-right: 0; }
.se-hero-stats > div:first-child { padding-left: 0; }
.se-hero-stat-num {
  font-family: var(--ff-head); font-size: 28px; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.se-hero-stat-num span { color: var(--yellow); }
.se-hero-stat-lbl {
  font-family: var(--ff-body); font-size: 13px; color: var(--body-2);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 6px;
  font-weight: 500;
}

/* Legacy datasheet card hooks — kept for any leftover markup */
.se-hero-visual .se-hero-card,
.se-hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}
.se-hero-card-head { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.se-hero-card-head .se-code { font-family: var(--ff-head); font-size: 13px; letter-spacing: .14em; color: var(--body-2); text-transform: uppercase; }
.se-hero-card-head .se-pill { font-family: var(--ff-head); font-size: 12px; letter-spacing: .12em; padding: 3px 8px; background: var(--yellow-soft); color: var(--yellow-dark); text-transform: uppercase; }
.se-hero-card-title { font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.se-hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.se-hero-card-cell { background: var(--bg-grey); padding: 10px; }
.se-hero-card-cell .lbl { font-family: var(--ff-head); font-size: 12px; letter-spacing: .12em; color: var(--body-2); text-transform: uppercase; }
.se-hero-card-cell .val { font-family: var(--ff-body); font-size: 16px; font-weight: 700; color: var(--ink); }
.se-hero-card-footer { padding-top: 10px; border-top: 1px solid var(--line); font-size: 13px; color: var(--body-2); font-family: var(--ff-head); letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.se-hero-card-footer .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.se-hero-float-card { background: var(--white); border: 1px solid var(--line); padding: 10px 14px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.se-hero-float-card i { color: var(--yellow); font-size: 16px; }
.se-hero-float-card .se-fc-lbl { font-family: var(--ff-head); font-size: 11px; letter-spacing: .12em; color: var(--body-2); text-transform: uppercase; }
.se-hero-float-card .se-fc-val { font-weight: 700; color: var(--ink); font-size: 14px; }

/* ==========================================================================
   GENDER / CATEGORY TILES — three image tiles with floating chip
   ========================================================================== */

.se-tile-row {
  padding: 60px 0 30px;
}
.se-tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .se-tile-grid { grid-template-columns: repeat(3, 1fr); } }

.se-tile {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-grey);
  overflow: hidden;
  display: block;
}
.se-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.se-tile:hover img { transform: scale(1.04); }
.se-tile-chip {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 28px;
  transition: all .2s var(--ease);
}
.se-tile:hover .se-tile-chip { background: var(--yellow); color: var(--white); }

/* Tinted backgrounds for the placeholder gender tiles */
.se-tile-1 { background: linear-gradient(135deg, #d4d8e0, #c8ccd6); }
.se-tile-2 { background: linear-gradient(135deg, #f4ddd6, #ecccc0); }
.se-tile-3 { background: linear-gradient(135deg, #d8d0e0, #c8bcd4); }

/* ==========================================================================
   FEATURE + CAROUSEL ROW (Women's + product carousel)
   ========================================================================== */

.se-feature-row {
  padding: 30px 0;
}
.se-feature-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-grey);
  overflow: hidden;
}
.se-feature-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.se-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
  color: var(--white);
  text-align: center;
  padding: 30px;
}
.se-feature-overlay h2 {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.se-feature-overlay .se-feature-link {
  font-family: var(--ff-head); font-size: 16px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}
.se-feature-card:hover .se-feature-link { border-color: var(--yellow); color: var(--yellow); }

/* Product carousel tabs */
.se-tabs {
  display: flex; gap: 28px; justify-content: center;
  border-bottom: 0; padding: 0 0 32px;
  flex-wrap: wrap;
}
.se-tabs .se-tab {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body-2);
  padding: 4px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s var(--ease);
}
.se-tabs .se-tab:hover { color: var(--ink); }
.se-tabs .se-tab.active { color: var(--ink); border-bottom-color: var(--yellow); }

/* ==========================================================================
   DEAL OF THE WEEK strip
   ========================================================================== */

.se-deal {
  background: var(--bg-cream);
  padding: 70px 0;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.se-deal-headline {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.15;
  position: relative;
}
.se-deal-headline em.accent {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}
.se-deal-headline::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--yellow);
  margin-top: 14px;
}
.se-deal p { color: var(--body); max-width: 460px; }
.se-deal-price {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
  margin: 20px 0;
}
.se-deal-price small {
  color: var(--body); font-size: 16px; font-weight: 400;
  font-family: var(--ff-body); margin-left: 6px;
}

/* Countdown */
.se-countdown {
  display: flex; gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.se-cd-cell {
  background: var(--white);
  padding: 14px 18px;
  min-width: 64px;
  text-align: center;
}
.se-cd-cell .num {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.se-cd-cell .lbl {
  font-family: var(--ff-head);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body-2);
  margin-top: 6px;
}

.se-deal-visual {
  position: relative; text-align: center;
}
.se-deal-visual::after {
  content: 'B';
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  font-family: var(--ff-head);
  font-size: 220px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  line-height: 1;
  z-index: 1;
}
.se-deal-visual img { position: relative; z-index: 2; max-width: 100%; }

/* ==========================================================================
   GENERIC SECTION
   ========================================================================== */

.se-section {
  padding: 70px 0;
  position: relative;
}
.se-section-alt { background: var(--bg-cream); }
.se-section-dark { background: var(--ink); color: var(--white); }
.se-section-dark h2, .se-section-dark h3, .se-section-dark h4 { color: var(--white); }
.se-section-dark p { color: rgba(255,255,255,.7); }

.se-eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.se-section-title,
.se-section h2.se-h {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  position: relative;
}
.se-section-title em.accent, .se-section h2.se-h em {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--yellow); font-weight: 500;
}
.se-section-dark .se-section-title { color: var(--white); }

/* Centered title with underline */
.se-title-center {
  text-align: center;
  margin-bottom: 50px;
}
.se-title-center .se-section-title {
  display: inline-block;
}
.se-title-center .se-section-title::after {
  content: '';
  display: block;
  width: 50px; height: 2px;
  background: var(--yellow);
  margin: 14px auto 0;
}

.se-section-lead,
.se-section .se-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--body); max-width: 600px;
}
.se-section-head { margin-bottom: 40px; }

/* ==========================================================================
   ABOUT BLOCK (about page)
   ========================================================================== */

.se-about-img {
  position: relative; overflow: hidden;
  background: var(--bg-grey);
  aspect-ratio: 4/5;
}
.se-about-img img { width: 100%; height: 100%; object-fit: cover; }
.se-about-img .se-badge-float {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white);
  padding: 14px 20px;
}
.se-about-img .se-badge-float .se-bf-lbl {
  font-family: var(--ff-head); font-size: 12px;
  color: var(--body-2); letter-spacing: .14em; text-transform: uppercase;
}
.se-about-img .se-badge-float .se-bf-val {
  font-family: var(--ff-head); font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.se-about-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.se-about-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink); font-weight: 500;
}
.se-about-list li i { color: var(--yellow); font-size: 16px; flex-shrink: 0; }

/* ==========================================================================
   CATEGORY GRID (subcategory cards on products.php) — Fashi-style small tiles
   ========================================================================== */

.se-cat-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 576px) { .se-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .se-cat-grid { grid-template-columns: repeat(3, 1fr); } }
.se-cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.se-cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .3s var(--ease);
}
.se-cat-card:hover {
  border-color: var(--ink);
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.se-cat-card:hover::before { width: 100%; }
.se-cat-card .se-cat-icon {
  width: 48px; height: 48px;
  background: var(--bg-cream);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all .25s var(--ease);
}
.se-cat-card:hover .se-cat-icon { background: var(--yellow); color: var(--white); }
.se-cat-card .se-cat-meta {
  font-family: var(--ff-head); font-size: 12px;
  color: var(--body-2); letter-spacing: .14em; text-transform: uppercase;
}
.se-cat-card .se-cat-title {
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 0;
}
.se-cat-card .se-cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); margin-top: auto;
}
.se-cat-card:hover .se-cat-link { color: var(--yellow); }
.se-cat-card .se-cat-link i { transition: transform .2s; }
.se-cat-card:hover .se-cat-link i { transform: translateX(4px); }

/* ==========================================================================
   WHY US — 4 cards (used on home + about)
   ========================================================================== */

.se-why-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .se-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .se-why-grid { grid-template-columns: repeat(4, 1fr); } }

.se-why-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: left;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.se-why-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.se-why-card .se-why-num {
  font-family: var(--ff-head); font-size: 12px;
  color: var(--yellow); letter-spacing: .18em; font-weight: 500;
}
.se-why-card .se-why-icon {
  width: 52px; height: 52px;
  background: var(--bg-cream);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.se-why-card h3 {
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 0;
}
.se-why-card p {
  color: var(--body); font-size: 15px; line-height: 1.7; margin: 0;
}

/* ==========================================================================
   STATS STRIP (dark with yellow)
   ========================================================================== */

.se-stats-strip {
  background: var(--ink);
  padding: 60px 0;
  color: var(--white);
}
.se-stat { padding: 12px; text-align: center; }
.se-stat-num, .se-stats-strip .stat-num {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem); color: var(--white);
  line-height: 1;
}
.se-stat-num span, .se-stats-strip .stat-num span { color: var(--yellow); }
.se-stat-label, .se-stats-strip .stat-lbl {
  font-family: var(--ff-head); font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 12px; font-weight: 500;
}
.se-stats-strip .stat-block { text-align: center; padding: 16px; }
.se-stats-strip .stat-num { font-family: var(--ff-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--white); }

/* ==========================================================================
   INDUSTRIES — clean white cards with yellow icon
   ========================================================================== */

.se-ind-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 576px) { .se-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .se-ind-grid { grid-template-columns: repeat(3, 1fr); } }
.se-ind-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 26px;
  transition: all .25s var(--ease);
  position: relative;
  text-decoration: none;
}
.se-ind-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .3s var(--ease);
}
.se-ind-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.se-ind-card:hover::before { width: 100%; }
.se-ind-card .se-ind-icon {
  width: 56px; height: 56px;
  background: var(--bg-cream);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.se-ind-card h3 {
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 0 0 8px;
}
.se-ind-card p {
  color: var(--body); font-size: 15px; line-height: 1.65; margin: 0;
}

/* ==========================================================================
   PROCESS — numbered steps
   ========================================================================== */

.se-process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .se-process-grid { grid-template-columns: repeat(4, 1fr); } }

.se-process-card {
  padding: 24px 18px;
  text-align: left;
  border-left: 2px solid var(--line);
  transition: border-color .25s var(--ease);
}
.se-process-card:hover { border-left-color: var(--yellow); }
.se-process-num {
  display: inline-block;
  font-family: var(--ff-head); font-size: 32px; font-weight: 700;
  color: var(--yellow); line-height: 1;
  margin-bottom: 14px;
}
.se-process-card h3 {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: .04em; text-transform: uppercase;
}
.se-process-card p {
  color: var(--body); font-size: 15px; line-height: 1.65; margin: 0;
}

/* ==========================================================================
   CTA BANNER (dark)
   ========================================================================== */

.se-cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.se-cta-banner .se-eyebrow { color: var(--yellow); }
.se-cta-banner h2, .se-cta-banner .se-cta-title {
  color: var(--white);
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 14px;
}
.se-cta-banner h2 em, .se-cta-banner .se-cta-title em.accent {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--yellow); font-weight: 500;
}
.se-cta-banner p, .se-cta-text {
  color: rgba(255,255,255,.7); font-size: 17px;
  max-width: 540px; margin-bottom: 20px;
}

/* ==========================================================================
   SEO BLOCK + TAG CLOUD
   ========================================================================== */

.se-seo-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 50px;
}
.se-seo-block h2 {
  font-family: var(--ff-head); font-size: 1.7rem; font-weight: 700;
  color: var(--ink); margin-bottom: 14px;
}
.se-seo-block h2 em { font-family: var(--ff-italic); font-style: italic; color: var(--yellow); font-weight: 500; }
.se-seo-block h3 {
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 28px 0 12px;
  letter-spacing: .04em; text-transform: uppercase;
}
.se-seo-block p { color: var(--body); font-size: 16px; line-height: 1.8; }

.se-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.se-tag {
  display: inline-flex; align-items: center;
  font-family: var(--ff-head); font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--body); background: var(--bg-grey);
  padding: 7px 14px;
  border: 1px solid var(--line);
  transition: all .2s var(--ease);
  font-weight: 500;
}
.se-tag:hover { background: var(--yellow); color: var(--white); border-color: var(--yellow); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.se-faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: 0 !important;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}
.se-faq .accordion-button {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  color: var(--ink); background: var(--white);
  padding: 18px 22px; border-radius: 0;
  letter-spacing: .02em;
}
.se-faq .accordion-button:not(.collapsed) {
  background: var(--bg-cream); color: var(--ink); box-shadow: none;
}
.se-faq .accordion-button:focus { box-shadow: none; }
.se-faq .accordion-button::after {
  background-image: none; content: '+';
  font-family: var(--ff-head); font-size: 22px; font-weight: 400;
  color: var(--ink); width: auto; height: auto; background-size: auto;
  transition: transform .25s var(--ease);
}
.se-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg); color: var(--yellow);
}
.se-faq .accordion-body {
  padding: 0 22px 22px; color: var(--body);
  font-size: 16px; line-height: 1.75;
}

/* ==========================================================================
   INNER BANNER
   ========================================================================== */

.se-inner-banner {
  background: var(--bg-cream);
  padding: 70px 0 60px;
  text-align: center;
}
.se-inner-banner h1, .se-inner-title {
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 12px;
}
.se-inner-banner h1 em, .se-inner-title em.accent {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--yellow); font-weight: 500;
}
.se-breadcrumb,
.se-inner-banner .breadcrumb {
  margin: 0; padding: 0; background: transparent;
  font-family: var(--ff-head); font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  justify-content: center;
}
.se-breadcrumb .breadcrumb-item a,
.se-inner-banner .breadcrumb a {
  color: var(--body-2); text-decoration: none;
}
.se-breadcrumb .breadcrumb-item a:hover,
.se-inner-banner .breadcrumb a:hover { color: var(--yellow); }
.se-breadcrumb .breadcrumb-item.active,
.se-inner-banner .breadcrumb-item.active { color: var(--yellow); }
.se-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.se-inner-banner .breadcrumb-item + .breadcrumb-item::before {
  color: var(--body-3); content: '/'; padding: 0 .5rem;
}

/* ==========================================================================
   INSTAGRAM STRIP (full-width image row)
   ========================================================================== */

.se-insta-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 60px 0 0;
}
@media (min-width: 768px) { .se-insta-strip { grid-template-columns: repeat(6, 1fr); } }
.se-insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-grey);
}
.se-insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.se-insta-item:hover img { transform: scale(1.05); }
.se-insta-cta {
  background: var(--yellow);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--ff-head);
  text-align: center;
}
.se-insta-cta .ic-label {
  font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
}
.se-insta-cta .ic-name {
  font-size: 17px; font-weight: 700;
  letter-spacing: .04em; margin-top: 4px;
}

/* ==========================================================================
   FROM-THE-BLOG cards
   ========================================================================== */

.se-blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 768px) { .se-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.se-blog-card { background: var(--white); }
.se-blog-media {
  aspect-ratio: 4/3;
  background: var(--bg-grey);
  overflow: hidden;
  margin-bottom: 20px;
}
.se-blog-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.se-blog-card:hover .se-blog-media img { transform: scale(1.04); }
.se-blog-meta {
  display: flex; gap: 18px;
  font-family: var(--ff-head); font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--body-2); margin-bottom: 12px; font-weight: 500;
}
.se-blog-meta i { color: var(--yellow); margin-right: 4px; }
.se-blog-card h3 {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  color: var(--ink); margin: 0 0 10px;
  line-height: 1.4; letter-spacing: -0.005em;
}
.se-blog-card h3 a { color: var(--ink); }
.se-blog-card h3 a:hover { color: var(--yellow); }
.se-blog-card p { font-size: 15px; color: var(--body); line-height: 1.7; }

/* ==========================================================================
   FEATURE ICON STRIP (shipping / delivery / payment row)
   ========================================================================== */

.se-feature-strip {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.se-feature-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .se-feature-strip-grid { grid-template-columns: repeat(3, 1fr); } }
.se-feature-strip-item {
  display: flex; align-items: center; gap: 18px;
  padding: 0 12px;
}
.se-feature-strip-item i {
  font-size: 36px; color: var(--yellow);
}
.se-feature-strip-item .se-fs-lbl {
  font-family: var(--ff-head); font-size: 17px; font-weight: 700;
  color: var(--ink); letter-spacing: .04em;
  text-transform: uppercase;
}
.se-feature-strip-item .se-fs-sub {
  font-size: 14px; color: var(--body-2);
  letter-spacing: .04em;
}

/* ==========================================================================
   BRAND STRIP (dark)
   ========================================================================== */

.se-brand-strip {
  background: var(--ink-3);
  padding: 40px 0;
}
.se-brand-strip-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  align-items: center; justify-items: center;
}
@media (min-width: 768px) { .se-brand-strip-grid { grid-template-columns: repeat(5, 1fr); } }
.se-brand-strip-item {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  color: rgba(255,255,255,.7); letter-spacing: .04em;
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.se-brand-strip-item:hover { color: var(--yellow); }
.se-brand-strip-item i { font-size: 18px; color: var(--yellow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.se-footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
}
.se-footer h4, .se-footer h5 {
  color: var(--white); font-family: var(--ff-head);
  font-size: 16px; font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.se-footer p {
  color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.7;
}
.se-footer ul { list-style: none; padding: 0; margin: 0; }
.se-footer ul li { margin-bottom: 12px; }
.se-footer ul li a {
  color: rgba(255,255,255,.55); font-size: 15px;
  transition: color .2s var(--ease);
}
.se-footer ul li a:hover { color: var(--yellow); }
.se-footer ul li a i { width: 16px; color: rgba(255,255,255,.4); margin-right: 6px; }

.se-footer-brand {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--ff-head); font-weight: 700;
  font-size: 28px; color: var(--white); margin-bottom: 18px;
}
.se-footer-brand .dot { color: var(--yellow); font-size: 28px; margin-left: 1px; }

.se-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.se-footer-social a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6); font-size: 16px;
  transition: all .2s var(--ease);
}
.se-footer-social a:hover { background: var(--yellow); color: var(--white); }

/* Newsletter */
.se-newsletter-form {
  display: flex; gap: 0;
  background: var(--white);
  margin-top: 14px;
}
.se-newsletter-form input {
  flex: 1; border: 0; padding: 11px 14px;
  font-family: var(--ff-body); font-size: 15px;
  background: var(--white); color: var(--ink);
}
.se-newsletter-form input:focus { outline: none; }
.se-newsletter-form input::placeholder { color: var(--body-3); }
.se-newsletter-form button {
  background: var(--yellow); color: var(--white);
  border: 0; padding: 0 22px;
  font-family: var(--ff-head); font-size: 14px;
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s var(--ease);
}
.se-newsletter-form button:hover { background: var(--yellow-dark); }

.se-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  margin-top: 60px;
  font-size: 14px; color: rgba(255,255,255,.4);
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
}
.se-footer-bottom a { color: rgba(255,255,255,.4); margin-right: 14px; }
.se-footer-bottom a:hover { color: var(--yellow); }
.se-footer-bottom .se-payment {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 22px; color: rgba(255,255,255,.55);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.se-contact-section .se-contact-info {
  background: var(--ink);
  color: var(--white);
  padding: 36px;
  height: 100%;
}
.se-contact-section .se-contact-info h2 {
  color: var(--white); font-family: var(--ff-head);
  font-weight: 700; margin-bottom: 12px;
}
.se-contact-section .se-contact-info h2 em {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--yellow); font-weight: 500;
}
.se-contact-section .se-contact-info p { color: rgba(255,255,255,.7); font-size: 16px; }
.se-contact-section .se-contact-info ul {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.se-contact-section .se-contact-info ul li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: flex-start;
}
.se-contact-section .se-contact-info ul li:last-child { border-bottom: 0; }
.se-contact-section .se-contact-info ul li i {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.se-contact-section .se-contact-info ul li strong {
  color: var(--white); font-family: var(--ff-head);
  font-size: 15px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; display: block; margin-bottom: 2px;
}
.se-contact-section .se-contact-info ul li span,
.se-contact-section .se-contact-info ul li a {
  color: rgba(255,255,255,.7); font-size: 15px;
}
.se-contact-section .se-contact-info ul li a:hover { color: var(--yellow); }

.se-form-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
}
.se-form-box h3 {
  font-family: var(--ff-head); font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.se-form-box .form-label {
  font-family: var(--ff-head); font-size: 13px;
  color: var(--body-2); letter-spacing: .14em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 6px;
}
.se-form-box .form-control, .se-form-box .form-select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: 16px; color: var(--ink);
  font-family: var(--ff-body);
  transition: border-color .2s var(--ease);
}
.se-form-box .form-control:focus, .se-form-box .form-select:focus {
  border-color: var(--yellow);
  box-shadow: none;
}
.se-form-box .form-control::placeholder { color: var(--body-3); }
.se-captcha-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-cream);
  padding: 14px;
  margin-bottom: 18px;
}
.se-captcha-q {
  font-family: var(--ff-head); font-size: 16px;
  color: var(--ink); flex: 1;
}

/* ==========================================================================
   PRODUCT GRID + CARDS — Fashi style
   ========================================================================== */

.se-product-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .se-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .se-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .se-product-grid { grid-template-columns: repeat(4, 1fr); } }

.se-product-card {
  background: var(--white);
  text-align: center;
  position: relative;
  transition: all .25s var(--ease);
}
.se-product-card:hover { transform: translateY(-3px); }
.se-product-media, .se-product-card .p-img {
  display: block;
  background: var(--bg-grey);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.se-product-media img, .se-product-card .p-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform .35s var(--ease);
}
.se-product-card:hover .se-product-media img,
.se-product-card:hover .p-img img { transform: scale(1.05); }

/* SALE flag (top-left) */
.se-product-flag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sale);
  color: var(--white);
  font-family: var(--ff-head); font-size: 12px;
  font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px;
  z-index: 2;
}

.se-product-body, .se-product-card .p-body {
  padding: 18px 12px 8px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.se-product-code, .se-product-card .p-body .p-code {
  font-family: var(--ff-head); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--body-2); margin: 0; font-weight: 500;
}
.se-product-name, .se-product-card .p-body h5 {
  font-family: var(--ff-head); font-weight: 600;
  font-size: 16px; line-height: 1.4;
  margin: 0; letter-spacing: .02em;
}
.se-product-name a, .se-product-card .p-body h5 a {
  color: var(--ink); text-decoration: none;
}
.se-product-name a:hover, .se-product-card .p-body h5 a:hover { color: var(--yellow); }
.se-product-price {
  font-family: var(--ff-head); font-size: 16px; font-weight: 700;
  color: var(--yellow); margin-top: 4px;
}
.se-product-price del {
  color: var(--body-2); font-weight: 400; font-size: 14px;
  margin-left: 6px;
}

.se-product-card .p-body .p-btn,
.se-product-card .p-body .btn { margin-top: 10px; }

/* ==========================================================================
   SEARCH PAGE
   ========================================================================== */

.se-search-toolbar, .se-search-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}
.se-search-toolbar h2 {
  color: var(--ink); font-family: var(--ff-head);
  font-weight: 700; font-size: 16px;
  letter-spacing: .04em; text-transform: uppercase;
  margin: 0;
}
.se-search-toolbar h2 i { color: var(--yellow); margin-right: 8px; }
.se-alphabet { display: flex; flex-wrap: wrap; gap: 4px; }
.se-alpha-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--bg-grey);
  color: var(--ink);
  font-family: var(--ff-head); font-weight: 500; font-size: 15px;
  border: 1px solid var(--line);
  transition: all .2s var(--ease);
  text-transform: uppercase;
}
.se-alpha-link:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.se-alpha-link.active { background: var(--yellow); color: var(--white); border-color: var(--yellow); }
.se-search-form .form-control {
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 14px; font-size: 16px;
}
.se-search-form .form-control:focus { border-color: var(--yellow); box-shadow: none; }
.se-search-meta {
  color: var(--body); font-size: 15px;
  font-family: var(--ff-head); letter-spacing: .04em;
}
.se-search-meta strong { color: var(--ink); }
.se-search-results { display: flex; flex-direction: column; gap: 14px; }
.se-search-item {
  background: var(--white); border: 1px solid var(--line);
  padding: 20px;
  display: grid; grid-template-columns: 140px 1fr; gap: 22px;
  transition: all .2s var(--ease);
}
.se-search-item:hover { border-color: var(--ink); }
@media (max-width: 575px) { .se-search-item { grid-template-columns: 1fr; } }
.se-search-thumb {
  background: var(--bg-grey);
  aspect-ratio: 1; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.se-search-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 12px; }
.se-search-name {
  font-family: var(--ff-head); font-weight: 600;
  font-size: 16px; margin: 0 0 6px;
}
.se-search-name a { color: var(--ink); }
.se-search-name a:hover { color: var(--yellow); }
.se-search-desc { color: var(--body); font-size: 15px; line-height: 1.65; margin-bottom: 10px; }
.se-search-code {
  font-family: var(--ff-head); font-size: 13px;
  color: var(--body-2); margin-bottom: 12px;
  letter-spacing: .12em; text-transform: uppercase;
}
.se-search-code strong { color: var(--ink); }
.se-search-actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.se-pagination a, .se-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 12px;
  margin: 0 3px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--ff-head); font-weight: 500; font-size: 15px;
  transition: all .2s var(--ease);
}
.se-pagination a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.se-pagination .current, .se-pagination strong {
  background: var(--yellow); color: var(--white); border-color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 12px; margin: 0 3px;
  font-family: var(--ff-head); font-weight: 500; font-size: 15px;
}

/* ==========================================================================
   CART
   ========================================================================== */

.se-cart-wrap {
  background: var(--white); border: 1px solid var(--line);
  padding: 30px;
}
.se-cart-head .se-eyebrow { color: var(--yellow); }
.se-cart-table { width: 100%; border-collapse: collapse; }
.se-cart-table thead { background: transparent; }
.se-cart-table thead th {
  background: var(--bg-cream);
  color: var(--ink);
  font-family: var(--ff-head); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px; border: 0;
}
.se-cart-table tbody td {
  padding: 16px 14px; border-bottom: 1px solid var(--line-2);
  vertical-align: middle; background: var(--white);
}
.se-cart-code {
  font-family: var(--ff-head); font-size: 14px; color: var(--ink);
  background: var(--bg-cream);
  padding: 4px 10px; display: inline-block;
  font-weight: 500; letter-spacing: .04em;
}
.se-cart-name { color: var(--ink); font-weight: 600; font-size: 16px; }
.se-cart-actions { border-top: 1px solid var(--line); padding-top: 24px; }

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.se-sidebar-card {
  background: var(--white); border: 1px solid var(--line);
  padding: 26px; margin-bottom: 18px;
}
.se-sidebar-title {
  font-family: var(--ff-head); font-weight: 700; color: var(--ink);
  font-size: 16px; margin: 0 0 16px;
  letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding-bottom: 12px;
}
.se-sidebar-title::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 30px; height: 2px;
  background: var(--yellow);
}
.se-sidebar-card p { color: var(--body); font-size: 15px; line-height: 1.65; }
.se-sidebar-list { list-style: none; padding: 0; margin: 0; }
.se-sidebar-list li {
  padding: 10px 0; color: var(--ink); font-size: 15px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line-2);
}
.se-sidebar-list li:last-child { border-bottom: 0; }
.se-sidebar-list li i { color: var(--yellow); font-size: 16px; flex-shrink: 0; }
.se-sidebar-list li a { color: var(--ink); }
.se-sidebar-list li a:hover { color: var(--yellow); }

.se-sidebar-steps {
  padding-left: 0; margin: 0;
  color: var(--body); font-size: 15px; line-height: 1.7;
  counter-reset: step; list-style: none;
}
.se-sidebar-steps li {
  padding: 8px 0; position: relative; padding-left: 28px;
  counter-increment: step;
}
.se-sidebar-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 8px;
  font-family: var(--ff-head); font-size: 13px;
  color: var(--yellow); font-weight: 700;
}
.se-sidebar-steps li strong { color: var(--ink); }

.se-sidebar-cta {
  background: var(--ink);
  color: var(--white);
  padding: 28px;
  text-align: center;
}
.se-sidebar-cta h3 {
  color: var(--white); font-family: var(--ff-head);
  font-weight: 700; font-size: 17px;
  margin: 0 0 8px;
}
.se-sidebar-cta p { color: rgba(255,255,255,.7); margin-bottom: 16px; font-size: 15px; }
.se-sidebar-cta .btn-light {
  background: var(--yellow); border-color: var(--yellow); color: var(--white);
}
.se-sidebar-cta .btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ==========================================================================
   EVENTS
   ========================================================================== */

.se-events-list { display: flex; flex-direction: column; gap: 18px; }
.se-event-card {
  background: var(--white); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr;
  overflow: hidden;
  transition: all .25s var(--ease);
}
@media (min-width: 768px) {
  .se-event-card:has(.se-event-media) { grid-template-columns: 260px 1fr; }
}
.se-event-card:hover { border-color: var(--ink); }
.se-event-media {
  background: var(--bg-grey);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; overflow: hidden;
}
.se-event-media img { width: 100%; height: 100%; object-fit: cover; }
.se-event-body { padding: 26px 28px; }
.se-event-title {
  font-family: var(--ff-head); font-weight: 700; color: var(--ink);
  font-size: 18px; margin: 0 0 10px;
}
.se-event-desc { color: var(--body); line-height: 1.65; font-size: 16px; }

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.se-empty-state {
  background: var(--white); border: 1px dashed var(--line);
  padding: 56px 30px; text-align: center;
}
.se-empty-state i {
  font-size: 2.4rem; color: var(--body-3);
  display: block; margin-bottom: 16px;
}
.se-empty-state h3 {
  font-family: var(--ff-head); font-weight: 600;
  color: var(--ink); font-size: 17px;
  margin: 0 0 10px; letter-spacing: .04em; text-transform: uppercase;
}
.se-empty-state p { color: var(--body); margin-bottom: 0; }
.se-empty-state a { color: var(--yellow); font-weight: 600; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

#back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--yellow);
  color: var(--white);
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 1000;
  font-size: 16px;
  transition: all .25s var(--ease);
}
#back-to-top:hover { background: var(--ink); }
#back-to-top.show { display: inline-flex; }

/* ==========================================================================
   LEGACY COMPATIBILITY HOOKS
   ========================================================================== */

.text-mint, .text-brass { color: var(--yellow) !important; }
.bg-light-2 { background: var(--bg-cream) !important; }
.bg-ink, .bg-green { background: var(--ink) !important; color: var(--white); }
.bg-cream { background: var(--bg-cream) !important; }
.se-italic { font-family: var(--ff-italic); font-style: italic; color: var(--yellow); font-weight: 500; }
.clearfix::after { content: ''; display: block; clear: both; }

/* Selection */
::selection { background: var(--yellow); color: var(--white); }
::-moz-selection { background: var(--yellow); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--body-3); }

/* ==========================================================================
   LEFT PANEL — Main category > Sub category accordion (left-panel.php)
   ========================================================================== */

.se-leftpanel {
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.se-leftpanel .se-sidebar-title {
  background: var(--ink);
  color: var(--white);
  margin: 0;
  padding: 18px 22px;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.se-leftpanel .se-sidebar-title::after { display: none; }

.se-leftpanel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.se-lp-group {
  border-bottom: 1px solid var(--line-2);
  width: 100%;
}
.se-lp-group:last-child { border-bottom: 0; }

.se-lp-main {
  display: flex;
  align-items: stretch;
  padding: 0;
  width: 100%;
  min-width: 0;
}
.se-lp-main-link {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 12px 14px 22px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.35;
  transition: color .2s var(--ease), background .2s var(--ease);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.se-lp-main-link:hover { color: var(--yellow); }
.se-lp-main-link.is-active {
  color: var(--yellow);
  background: var(--bg-cream);
  font-weight: 600;
}

.se-lp-toggle {
  flex: 0 0 40px;
  background: transparent;
  border: 0;
  width: 40px;
  min-width: 40px;
  height: auto;
  color: var(--body-2);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s;
}
.se-lp-toggle:hover { color: var(--yellow); background: var(--bg-cream); }
.se-lp-toggle i { transition: transform .25s var(--ease); }
.se-lp-group.is-open .se-lp-toggle i { transform: rotate(180deg); color: var(--yellow); }

.se-lp-sub {
  list-style: none;
  margin: 0;
  padding: 0 14px 0 14px;
  background: var(--bg-cream);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  width: 100%;
  box-sizing: border-box;
}
.se-lp-group.is-open .se-lp-sub {
  max-height: 2000px;
  padding: 10px 14px 14px 14px;
}
.se-lp-sub li {
  margin: 0;
  padding: 0;
  width: 100%;
}
.se-lp-sub li a {
  display: block;
  padding: 8px 8px 8px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  position: relative;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.se-lp-sub li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--body-3);
  transition: background .2s, width .2s;
}
.se-lp-sub li a:hover {
  color: var(--yellow);
  padding-left: 20px;
}
.se-lp-sub li a:hover::before {
  background: var(--yellow);
  width: 10px;
}
.se-lp-sub li a.is-active {
  color: var(--yellow);
  font-weight: 600;
}
.se-lp-sub li a.is-active::before {
  background: var(--yellow);
  width: 10px;
}

.se-lp-empty {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--body-2);
  font-style: italic;
}

.se-leftpanel-help {
  background: var(--bg-cream);
  padding: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.se-leftpanel-help h5 {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  word-wrap: break-word;
}
.se-leftpanel-help p {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
  word-wrap: break-word;
}
.se-leftpanel-help .btn {
  width: 100%;
  white-space: normal;
}

/* ==========================================================================
   READABILITY OVERRIDES — bumped sizes for footer & small links
   ========================================================================== */

/* Footer base copy bigger */
.se-footer p { font-size: 15px; line-height: 1.75; }
.se-footer ul li { margin-bottom: 14px; }
.se-footer ul li a { font-size: 15px; }
.se-footer h4, .se-footer h5 { font-size: 17px; }

/* Footer bottom legal */
.se-footer-bottom { font-size: 14px; }
.se-footer-bottom a { font-size: 14px; }

/* Topbar links */
.se-topbar { font-size: 14px; }
.se-topbar a { font-size: 14px; }

/* Nav links readability */
.se-navbar .navbar-nav .nav-link { font-size: 14px; }
.se-nav-cta { font-size: 14px; }

/* Sidebar links bumped */
.se-sidebar-list li { font-size: 15px; padding: 12px 0; }
.se-sidebar-list li a { font-size: 15px; }

/* Eyebrows readable */
.se-eyebrow { font-size: 13px; }

/* Blog meta */
.se-blog-meta { font-size: 13px; }
.se-blog-meta span { font-size: 13px; }
.se-blog-card p { font-size: 15px; }

/* About list */
.se-about-list li { font-size: 15px; }

/* Tag cloud */
.se-tag { font-size: 13px; padding: 8px 16px; }

/* SEO block body */
.se-seo-block p { font-size: 16px; line-height: 1.85; }

/* Why-us text */
.se-why-card p { font-size: 15px; }
.se-why-card h3 { font-size: 17px; }

/* Industries text */
.se-ind-card p { font-size: 15px; }
.se-ind-card h3 { font-size: 17px; }

/* Process step copy */
.se-process-card p { font-size: 15px; }
.se-process-card h3 { font-size: 16px; }

/* Category cards */
.se-cat-card .se-cat-title { font-size: 17px; }
.se-cat-card .se-cat-meta { font-size: 12px; }
.se-cat-card .se-cat-link { font-size: 13px; }

/* Product cards */
.se-product-name, .se-product-card .p-body h5 { font-size: 15px; }
.se-product-price { font-size: 16px; }
.se-product-code { font-size: 12px; }

/* Search results */
.se-search-name { font-size: 18px; }
.se-search-desc { font-size: 15px; }
.se-search-meta { font-size: 14px; }

/* Cart copy */
.se-cart-name { font-size: 15px; }

/* Buttons slightly larger */
.btn { font-size: 14px; }
.btn-lg { font-size: 14px; padding: 14px 32px; }
.btn-sm { font-size: 12px; }

/* Form labels & inputs */
.se-form-box .form-control, .se-form-box .form-select { font-size: 15px; }
.se-form-box .form-label { font-size: 12px; }

/* Contact info */
.se-contact-section .se-contact-info p { font-size: 15px; }
.se-contact-section .se-contact-info ul li span,
.se-contact-section .se-contact-info ul li a { font-size: 15px; }
.se-contact-section .se-contact-info ul li strong { font-size: 14px; }

/* Search bar in header */
.se-search-input { font-size: 14px; }
.se-search-cat { font-size: 14px; }

/* Cart cluster total */
.se-cart-total { font-size: 15px; }

/* Hero lead */
.se-hero-lead { font-size: 16px; }

/* Section lead */
.se-section-lead, .se-section .se-sub { font-size: 16px; }

/* Hero tag */
.se-hero-tag { font-size: 13px; }

/* Newsletter */
.se-newsletter-form input { font-size: 14px; }
.se-newsletter-form button { font-size: 13px; }

/* ==========================================================================
   HERO CAROUSEL — 6-slide auto-rotating banner on index.php
   ========================================================================== */

.se-hero-carousel-wrap {
  position: relative;
  background: var(--bg-cream);
}

.se-hero-carousel {
  position: relative;
}

/* Carousel inherits .se-hero padding from the inner <section>, so kill bg here */
.se-hero-carousel .carousel-item > .se-hero {
  margin: 0;
}

/* Hero image circular treatment inside carousel */
.se-hero-carousel .se-hero-img img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Indicator dots — yellow */
.se-hero-carousel .carousel-indicators {
  bottom: 24px;
  margin-bottom: 0;
}
.se-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(28,28,28,.25);
  border: 0;
  margin: 0 5px;
  opacity: 1;
  transition: all .2s var(--ease);
}
.se-hero-carousel .carousel-indicators .active {
  background: var(--yellow);
  width: 28px;
  border-radius: 5px;
}

/* Prev/next arrows */
.se-hero-carousel .carousel-control-prev,
.se-hero-carousel .carousel-control-next {
  width: 48px;
  opacity: 1;
  z-index: 5;
}
.se-hero-carousel .carousel-control-prev-icon,
.se-hero-carousel .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  background-color: var(--white);
  border-radius: 50%;
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .2s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.se-hero-carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231c1c1c' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.se-hero-carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231c1c1c' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.se-hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.se-hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--yellow);
}
.se-hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.se-hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Crossfade instead of slide (smoother for tall hero) */
.se-hero-carousel .carousel-item {
  transition: opacity .6s ease-in-out;
}
.se-hero-carousel.carousel-fade .carousel-item,
.se-hero-carousel .carousel-item {
  opacity: 1;
}

/* Indicators clear of CTA buttons on small screens */
@media (max-width: 767px) {
  .se-hero-carousel .carousel-indicators { bottom: 10px; }
  .se-hero-carousel .carousel-control-prev,
  .se-hero-carousel .carousel-control-next { display: none; }
}

/* ==========================================================================
   PRODUCTS PAGE FIXES — equal-height cards + grid containment
   ========================================================================== */

/* Products grid container — keep within column on subcategory pages */
.se-product-grid {
  width: 100%;
  min-width: 0;
}

/* Equal-height product cards with body content flowing to bottom */
.se-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.se-product-card .p-body,
.se-product-card .se-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
/* Push the buttons row to the bottom */
.se-product-card .p-body form {
  margin-top: auto !important;
}
/* Product title — clamp to 2 lines max so cards stay even */
.se-product-card .p-body h5,
.se-product-card .se-product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  text-overflow: ellipsis;
}
/* Code line — single line */
.se-product-card .p-body .p-code,
.se-product-card .se-product-code {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* On products.php the listing column is col-lg-9; reduce product grid to 3-up */
@media (min-width: 992px) {
  .col-lg-9 .se-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .col-lg-9 .se-product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Sidebar column on products.php */
@media (min-width: 992px) {
  .col-lg-9 + .col-lg-3 .se-leftpanel { position: sticky; top: 20px; }
}

/* Make sure any flex/grid parent of sidebar can't push content overflow */
.col-lg-3, .col-md-4 { min-width: 0; }

/* ==========================================================================
   TENDER SECTION — Bulk Tender Supply (index.php)
   Dark ink panel with yellow accents + tender response card
   ========================================================================== */

.se-tender-section {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle texture / gradient orb in the corner */
.se-tender-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,185,33,.12), transparent 65%);
  pointer-events: none;
}
.se-tender-section > .container {
  position: relative;
  z-index: 2;
}

.se-tender-eyebrow {
  color: var(--yellow);
  margin-bottom: 20px;
}

.se-tender-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.se-tender-title em.accent {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

.se-tender-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin: 0 0 32px;
  max-width: 520px;
}
.se-tender-lead strong { color: var(--yellow); font-weight: 600; }

/* Three quick stats above the CTAs */
.se-tender-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  margin-bottom: 32px;
  max-width: 520px;
}
.se-tender-stat {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.se-tender-stat:last-child { border-right: 0; }
.se-tender-stat:first-child { padding-left: 0; }
.se-tender-stat-num {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.se-tender-stat-lbl {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  line-height: 1.5;
}

.se-tender-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* Reverse outline-brand button on dark bg: white border + white text */
.se-tender-section .btn-outline-brand {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.se-tender-section .btn-outline-brand:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* Tender response card (right column) */
.se-tender-card {
  background: var(--white);
  color: var(--ink);
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.4);
}
.se-tender-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  pointer-events: none;
}
.se-tender-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  pointer-events: none;
}

.se-tender-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.se-tender-card-tag {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--yellow);
  text-transform: uppercase;
}
.se-tender-card-meta {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--body-2);
}

.se-tender-card-title {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}

.se-tender-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.se-tender-checklist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: flex-start;
}
.se-tender-checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.se-tender-checklist li i {
  color: var(--yellow);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.se-tender-checklist li strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  margin-bottom: 2px;
}
.se-tender-checklist li span {
  display: block;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}

.se-tender-card-footer {
  background: var(--bg-cream);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px -36px -36px;
}
.se-tender-card-footer i {
  color: var(--yellow);
  font-size: 18px;
}
.se-tender-card-footer span {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink);
  text-transform: uppercase;
}

/* Donor / programme trust strip below the main row */
.se-tender-trust {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.se-tender-trust-label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
.se-tender-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 18px;
}
@media (min-width: 576px) { .se-tender-trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .se-tender-trust-grid { grid-template-columns: repeat(6, 1fr); } }

.se-tender-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: rgba(255,255,255,.7);
  transition: color .2s var(--ease);
}
.se-tender-trust-item:hover { color: var(--yellow); }
.se-tender-trust-item i {
  font-size: 28px;
  color: var(--yellow);
  opacity: .85;
}
.se-tender-trust-item span {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .se-tender-section { padding: 60px 0; }
  .se-tender-card { padding: 28px 24px; }
  .se-tender-card-footer { margin: 24px -24px -28px; }
  .se-tender-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .se-tender-stat:nth-child(2) { border-right: 0; }
  .se-tender-stat:nth-child(3) { grid-column: 1 / -1; border-right: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
}

/* ==========================================================================
   TENDER REWRITE — replace retail elements (Sale/£/countdown)
   ========================================================================== */

/* New product card tag (replaces se-product-flag "Sale") */
.se-product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  z-index: 2;
}

/* Request Quote CTA (replaces price line) */
.se-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--yellow);
  align-self: center;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.se-product-cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.se-product-cta i { transition: transform .2s var(--ease); }
.se-product-cta:hover i { transform: translateX(3px); }

/* Old retail elements — hide if any straggler markup leaks through */
.se-product-flag, .se-product-price, .se-countdown { display: none !important; }

/* Manufacturing capabilities list (replaces deal-of-week countdown) */
.se-deal-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 4px;
}
.se-deal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}
.se-deal-list li i {
  color: var(--yellow);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.5;
}
.se-deal-list li strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   HEADER cart cluster — tender enquiry styling
   ========================================================================== */

.se-cart-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.se-cart-label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.se-cart-sub {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--body-2);
  margin-top: 2px;
}

/* ==========================================================================
   CERTIFICATIONS / TRUST STRIP (replaces brand strip)
   ========================================================================== */

.se-brand-strip-label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: 28px;
}
.se-brand-strip-item {
  /* Keep visual treatment; rename to use spans (non-clickable now) */
  cursor: default;
}
.se-brand-strip-item:hover { color: rgba(255,255,255,.85); }

/* ==========================================================================
   CONTACTS PAGE — alignment + B2B polish
   ========================================================================== */

/* Section spacing */
.se-contact-section.se-section { padding: 70px 0; }

/* Use h-100 utility safely with flex inside */
.se-contact-section .se-contact-info.h-100 {
  display: flex;
  flex-direction: column;
}
.se-contact-section .se-form-box.h-100 {
  display: flex;
  flex-direction: column;
}

/* Eyebrow inside dark info panel — white-tinted dot + light grey label */
.se-contact-section .se-contact-info .se-eyebrow {
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.se-contact-section .se-contact-info .se-eyebrow::before {
  background: var(--yellow);
}

/* The contact info <ul> stretches to fill height of column when row is taller */
.se-contact-section .se-contact-info ul {
  margin-top: 24px;
  flex: 1;
}

/* Multiple emails stacked vertically (not side by side) */
.se-contact-section .se-contact-info ul li a {
  display: block;
  line-height: 1.6;
}
.se-contact-section .se-contact-info ul li a + a {
  margin-top: 2px;
}

/* Form box internals */
.se-form-box h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.se-form-box h3 em.accent {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}
.se-form-intro {
  font-size: 13px;
  color: var(--body-2);
  margin-bottom: 28px;
}

/* The enquiry form fills the remaining height of .se-form-box */
.se-enquiry-form { flex: 1; display: flex; flex-direction: column; }
.se-enquiry-form > .row { flex: 1; align-content: flex-start; }

/* Captcha layout — fix overflow & sizing on narrow screens */
.se-captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  padding: 16px 18px;
  margin-bottom: 4px;
  border-radius: var(--r);
  flex-wrap: wrap;
}
.se-captcha-q {
  font-family: var(--ff-head);
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.se-captcha-label {
  font-family: var(--ff-head);
  font-size: 12px;
  color: var(--body-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.se-captcha-q strong {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.se-captcha-input {
  flex: 1 1 140px;
  max-width: 180px;
  min-width: 120px;
}
.se-captcha-input input { width: 100%; }

/* Submit button row — clear visual separation from captcha */
.se-enquiry-form .btn-brand.btn-lg {
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: .14em;
}

/* Success message — replace generic Bootstrap alert */
.se-form-msg {
  background: var(--yellow-soft);
  border: 1px solid var(--yellow);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--r);
}
.se-form-msg i {
  font-size: 28px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.se-form-msg strong {
  font-family: var(--ff-head);
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}

/* Textarea taller */
.se-form-box textarea.form-control {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Inputs height consistency */
.se-form-box .form-control {
  height: 46px;
}
.se-form-box textarea.form-control { height: auto; }

/* Mobile tightening */
@media (max-width: 991px) {
  .se-contact-section .se-contact-info,
  .se-form-box { padding: 28px 24px; }
}
@media (max-width: 575px) {
  .se-captcha-q strong { font-size: 18px; }
  .se-captcha-input { max-width: 100%; flex: 1 1 100%; }
}
