:root {
  --brand: #f5a623;
  --brand-dark: #0f2544;
  --brand-dark2: #16345c;
  --text-muted: #64748b;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
  background: #fff;
}

a { text-decoration: none; }

.top-bar {
  background: var(--brand-dark);
  color: #e7ecf3;
}

.site-header .navbar-brand .brand-text { color: var(--brand-dark); font-weight: 800; }
.site-header .nav-link { font-weight: 500; color: #22303f; padding: .5rem 1rem; }
.site-header .nav-link:hover { color: var(--brand); }

.btn-brand {
  background: var(--brand);
  color: #1f2937;
  font-weight: 600;
  border-radius: 30px;
  padding: .5rem 1.3rem;
  border: none;
}
.btn-brand:hover { background: #e0921a; color: #1f2937; }

.dropdown-submenu-wrap { position: relative; }
.dropdown-submenu { display: none; position: absolute; top: 0; left: 100%; margin-top: -4px; min-width: 200px; }
.dropdown-submenu-wrap:hover > .dropdown-submenu { display: block; }
@media (max-width: 991px) {
  .dropdown-submenu { position: static; display: block; box-shadow: none; border: none; padding-left: 1rem; }
}

/* Hero Slider */
.hero-slider .carousel-item { height: 480px; background-size: cover; background-position: center; }
.hero-slider .carousel-caption { bottom: auto; top: 50%; transform: translateY(-50%); text-align: left; left: 8%; right: auto; max-width: 560px; }
.hero-slider .carousel-caption h2 { font-size: 2.6rem; font-weight: 800; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-slider .carousel-caption p { font-size: 1.1rem; color: #f1f5f9; }
@media (max-width: 767px) {
  .hero-slider .carousel-item { height: 320px; }
  .hero-slider .carousel-caption { left: 5%; }
  .hero-slider .carousel-caption h2 { font-size: 1.6rem; }
}

.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-weight: 800; color: var(--brand-dark); }
.section-title .accent { color: var(--brand); }
.section-title p { color: var(--text-muted); max-width: 600px; margin: .5rem auto 0; }

/* Category Cards */
.category-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(15,37,68,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(15,37,68,.15); }
.category-card img { height: 180px; width: 100%; object-fit: cover; }
.category-card .cat-body { padding: 1rem; text-align: center; }
.category-card .cat-body h5 { font-weight: 700; color: var(--brand-dark); margin: 0; }

/* Product Cards */
.product-card {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #fff;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(15,37,68,.12); }
.product-card .prod-img { height: 190px; width: 100%; object-fit: cover; background: #f5f6f8; }
.product-card .prod-body { padding: 1rem; }
.product-card .prod-body h6 { font-weight: 700; color: var(--brand-dark); margin-bottom: .3rem; }
.product-card .prod-body p { color: var(--text-muted); font-size: .88rem; margin-bottom: .7rem; }

.category-section { padding: 3.5rem 0; }
.category-section:nth-child(even) { background: #f8fafc; }

/* Gallery */
.gallery-item { border-radius: 12px; overflow: hidden; margin-bottom: 1.2rem; box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .3s ease; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.06); }

/* Price list */
.pricelist-cat-card { border-radius: 14px; padding: 1.6rem 1rem; text-align: center; border: 1px solid #eef0f3; transition: all .2s ease; height: 100%; }
.pricelist-cat-card:hover { box-shadow: 0 10px 24px rgba(15,37,68,.12); border-color: var(--brand); }
.pricelist-cat-card i { font-size: 2.4rem; color: var(--brand); }

.pdf-row { border: 1px solid #eef0f3; border-radius: 10px; padding: .9rem 1.1rem; margin-bottom: .8rem; }

/* CTA */
.cta-band { background: linear-gradient(135deg, var(--brand-dark), var(--brand-dark2)); color: #fff; padding: 3rem 0; }

/* Footer */
.site-footer { background: var(--brand-dark); }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: var(--brand); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 6px 18px rgba(0,0,0,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* Breadcrumb / inner page banner */
.page-banner { background: var(--brand-dark); color: #fff; padding: 2.6rem 0; margin-bottom: 0; }
.page-banner h1 { font-weight: 800; margin: 0; }
.page-banner .breadcrumb a { color: #cbd5e1; }
.page-banner .breadcrumb .active { color: var(--brand); }

/* Pagination */
.pagination .page-link { color: var(--brand-dark); }
.pagination .page-item.active .page-link { background: var(--brand-dark); border-color: var(--brand-dark); }

/* Admin login */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--brand-dark); }
.admin-login-card { background: #fff; border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 400px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
