/* ============================================================
   GOLDEN UNIFORMS — Noraure Theme Style
   Clean Minimal Fashion Ecommerce
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: #333; background: #fff; line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: color .25s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- VARIABLES ---- */
:root {
  --black: #111;
  --dark: #333;
  --mid: #666;
  --light: #999;
  --border: #e8e8e8;
  --bg: #f8f8f8;
  --white: #fff;
  --accent: #c8a951;
  --accent2: #8b6914;
  --navy: #1a2744;
  --red: #e02020;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: .5px;
}
.top-bar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--accent); }
.top-bar-links { display: flex; gap: 20px; }
.top-bar-links a { display: flex; align-items: center; gap: 5px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
}
.header-main {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo { text-align: center; }
.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; letter-spacing: 2px;
  color: var(--black); text-transform: uppercase;
}
.logo span { font-size: 10px; letter-spacing: 3px; color: var(--accent2); text-transform: uppercase; display: block; }

/* ---- MAIN NAV ---- */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--dark); padding: 8px 0;
  display: block; border-bottom: 2px solid transparent;
  transition: all .25s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--accent2); border-bottom-color: var(--accent); }

/* mega / simple dropdown */
.main-nav .dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  min-width: 200px; z-index: 800; box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.dropdown-menu li a {
  display: block; padding: 11px 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: var(--dark); border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--bg); color: var(--accent2); padding-left: 26px; }
.dropdown:hover .dropdown-menu { display: block; animation: fadeDown .2s ease; }

@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* header icons */
.header-icons { display: flex; align-items: center; gap: 18px; }
.header-icons a { color: var(--dark); font-size: 18px; position: relative; display: flex; }
.header-icons a:hover { color: var(--accent2); }
.icon-badge {
  position: absolute; top: -6px; right: -7px;
  background: var(--navy); color: #fff; font-size: 9px;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); display: block; transition: .3s; }

/* mobile nav */
.mobile-nav { display: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ============================================================
   SECTION HEADING (Noraure style — serif, centered, underline img)
   ============================================================ */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600;
  color: var(--black); margin-bottom: 10px;
}
.section-heading .underline-wave {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 0 auto 14px; border-radius: 2px;
}
.section-heading p { color: var(--mid); font-size: 14px; max-width: 500px; margin: 0 auto; }

/* ============================================================
   HERO SLIDER (Noraure full-width style)
   ============================================================ */
.hero { position: relative; overflow: hidden; background: #111; }
.hero-track { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.hero-slide {
  min-width: 100%; height: 580px; position: relative;
  display: flex; align-items: center;
}
.hero-slide img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.hero-caption {
  position: relative; z-index: 2; color: #fff;
  padding-left: 10%;
}
.hero-caption .sub {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.hero-caption h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(34px,5vw,64px);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.hero-caption p { font-size: 15px; opacity: .85; margin-bottom: 28px; }
.hero-caption .btn-hero {
  display: inline-block; background: var(--white); color: var(--black);
  padding: 13px 36px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.hero-caption .btn-hero:hover { background: var(--accent); color: var(--white); }

/* slider controls */
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,.2);
  color: #fff; font-size: 20px; z-index: 10; border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--white); color: var(--black); }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; transition: .3s; }
.hero-dot.active { background: var(--white); }

/* ============================================================
   BANNER TRIO (3 boxes below hero — Noraure style)
   ============================================================ */
.banner-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding: 24px 0; }
.banner-box { position: relative; overflow: hidden; height: 280px; display: block; }
.banner-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.banner-box:hover img { transform: scale(1.05); }
.banner-box-content {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  color: #fff;
}
.banner-box-content .tag {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 4px;
}
.banner-box-content h3 {
  font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px;
}
.banner-box-content a.shop-link {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--accent); border-bottom: 1px solid var(--accent);
  padding-bottom: 1px; display: inline-block;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card { position: relative; }
.product-img {
  position: relative; overflow: hidden; background: var(--bg);
  aspect-ratio: 3/4; margin-bottom: 14px;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; text-transform: uppercase; z-index: 2;
}
.product-badge.new { background: var(--navy); }

.product-actions {
  position: absolute; bottom: -50px; left: 0; right: 0;
  display: flex; gap: 1px; z-index: 3;
  transition: bottom .3s ease;
}
.product-card:hover .product-actions { bottom: 0; }
.btn-enquire {
  flex: 1; background: var(--black); color: var(--white);
  padding: 11px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; transition: background .25s;
}
.btn-enquire:hover { background: var(--accent2); color: var(--white); }

.product-info { }
.product-info h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  color: var(--dark); margin-bottom: 4px;
  text-transform: uppercase;
}
.product-info h4 a { color: inherit; }
.product-info h4 a:hover { color: var(--accent2); }
.product-info .cat-label {
  font-size: 11px; color: var(--light); letter-spacing: 1px; text-transform: uppercase;
}

/* ============================================================
   TABBED PRODUCTS (Noraure bestseller / new / must-have tabs)
   ============================================================ */
.product-tabs-wrap { }
.product-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; border-bottom: 2px solid var(--border); }
.tab-btn {
  padding: 12px 28px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--mid);
  border: none; background: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .25s;
}
.tab-btn.active { color: var(--black); border-bottom-color: var(--black); }
.tab-btn:hover { color: var(--dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: var(--bg); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s ease; }
.testimonial-item {
  min-width: 100%; padding: 0 60px; text-align: center;
}
.testimonial-item p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 18px; color: var(--dark); line-height: 1.7;
  max-width: 700px; margin: 0 auto 24px;
}
.testimonial-item .quote { font-size: 64px; color: var(--accent); line-height: .5; margin-bottom: 16px; display: block; }
.testimonial-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; }
.testimonial-author h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-author span { font-size: 12px; color: var(--mid); }
.testimonial-nav { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; transition: .3s; }
.t-dot.active { background: var(--dark); }

/* ============================================================
   SERVICES BAR (Noraure — 3 icon blocks)
   ============================================================ */
.services-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 30px; border-right: 1px solid var(--border);
}
.service-item:last-child { border-right: none; }
.service-icon { font-size: 32px; }
.service-text h5 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.service-text p { font-size: 12px; color: var(--mid); }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; }
.about-strip-img { height: 440px; overflow: hidden; }
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 70px; background: var(--bg);
}
.about-strip-text .tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 12px; display: block; }
.about-strip-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 18px; color: var(--black); }
.about-strip-text p { color: var(--mid); font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.about-strip-text .btn-outline {
  display: inline-block; border: 2px solid var(--black); color: var(--black);
  padding: 11px 32px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-top: 10px;
  transition: all .25s;
}
.about-strip-text .btn-outline:hover { background: var(--black); color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-block { }
.contact-info-block h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; }
.contact-info-block p { color: var(--mid); font-size: 14px; margin-bottom: 24px; line-height: 1.8; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .icon { font-size: 20px; margin-top: 2px; }
.contact-detail h5 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail p { font-size: 14px; color: var(--mid); margin: 0; }
.contact-detail a { color: var(--accent2); }

/* form */
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 0;
  font-size: 13px; font-family: inherit; color: var(--dark);
  outline: none; transition: border .25s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 13px 40px; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all .3s;
  border: 2px solid var(--black);
}
.btn-submit:hover { background: var(--accent2); border-color: var(--accent2); }
.form-success { background: #f0faf4; border: 1px solid #a7d7b4; color: #1a6630; padding: 12px 16px; font-size: 13px; margin-top: 14px; display: none; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner { background: var(--bg); padding: 48px 0; text-align: center; border-bottom: 1px solid var(--border); }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--black); margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 12px; color: var(--mid); }
.breadcrumb a { color: var(--mid); }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.sidebar-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.sidebar .widget { margin-bottom: 32px; }
.sidebar .widget h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--black); padding-bottom: 10px; border-bottom: 2px solid var(--black);
  margin-bottom: 16px;
}
.sidebar .cat-list li { border-bottom: 1px solid var(--border); }
.sidebar .cat-list li a {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--mid);
}
.sidebar .cat-list li a:hover { color: var(--accent2); padding-left: 4px; }
.sidebar .cat-list li a span { color: var(--light); }

/* ============================================================
   PRODUCT LISTING PAGE
   ============================================================ */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.shop-toolbar .result-count { font-size: 12px; color: var(--mid); letter-spacing: .5px; }
.shop-sort select { border: 1px solid var(--border); padding: 7px 12px; font-size: 12px; font-family: inherit; background: #fff; outline: none; }

/* ============================================================
   GALLERY (product images lightbox grid)
   ============================================================ */
.img-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.img-gallery-item { overflow: hidden; aspect-ratio: 1; cursor: zoom-in; }
.img-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.img-gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   FOOTER (Noraure 4-col dark footer)
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-brand .contact-items { margin-top: 20px; }
.footer-brand .contact-items li { font-size: 13px; margin-bottom: 8px; }
.footer-brand .contact-items a { color: var(--accent); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: all .25s; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-newsletter input {
  width: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 10px 14px; color: #fff; font-size: 13px; font-family: inherit; outline: none; margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter button {
  background: var(--accent); color: var(--black);
  padding: 10px 20px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; width: 100%;
  transition: background .25s;
}
.footer-newsletter button:hover { background: var(--accent2); color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 12px; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--accent); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 90vw; }
.lightbox-close { position: absolute; top: 16px; right: 22px; color: #fff; font-size: 34px; background: none; border: none; cursor: pointer; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content p { font-size: 14px; color: var(--mid); line-height: 1.9; margin-bottom: 16px; }
.about-content h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--black); margin: 28px 0 12px; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 36px 0; text-align: center; }
.stat-box { border: 1px solid var(--border); padding: 28px 16px; }
.stat-box .num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-box .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }
.facility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
.facility-grid img { height: 180px; object-fit: cover; width: 100%; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1px solid var(--border); }
.feature-item .fi { font-size: 22px; }
.feature-item h5 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--mid); }

/* ============================================================
   ADMIN (kept minimal inline in admin/index.html)
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .banner-trio { grid-template-columns: 1fr 1fr; }
  .banner-trio .banner-box:last-child { grid-column: 1/-1; height: 200px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-text { padding: 40px 36px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-icons .search-icon { display: none; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .products-grid-3 { grid-template-columns: repeat(2,1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border); }
  .service-item:last-child { border-bottom: none; }
  .hero-slide { height: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .banner-trio { grid-template-columns: 1fr; }
  .banner-trio .banner-box:last-child { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid, .products-grid-3 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-slide { height: 320px; }
  .hero-caption { padding-left: 5%; }
  .hero-caption h2 { font-size: 28px; }
}

/* util */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
