/* ===========================
   SPECTICA – Global Styles
   =========================== */
:root {
  --primary: #030441;
  --primary-light: #0a0a7a;
  --primary-dark: #020330;
  --accent: #e8642c;
  --accent-light: #f5a07a;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --bg-light: #f8f9fc;
  --white: #ffffff;
  --border: #e8e8f0;
  --shadow-sm: 0 2px 12px rgba(3,4,65,0.08);
  --shadow-md: 0 8px 32px rgba(3,4,65,0.14);
  --shadow-lg: 0 16px 48px rgba(3,4,65,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

/* ===========================
   TOP ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.announcement-bar a { color: var(--accent-light); text-decoration: underline; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .navbar-brand img { filter: brightness(0) invert(1); }
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.9) !important; }
.navbar.scrolled .nav-link:hover { color: var(--accent-light) !important; }
.navbar.scrolled .navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar.scrolled .navbar-toggler-icon { filter: invert(1); }

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.navbar.scrolled .nav-link.active { color: var(--accent-light) !important; }

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 220px;
  animation: dropIn 0.2s ease;
}

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

.dropdown-item {
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 20px;
  color: var(--text-dark);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 26px;
}

.dropdown-item i {
  width: 20px;
  color: var(--primary);
  margin-right: 6px;
}

.btn-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all var(--transition);
  border: 2px solid var(--primary);
}

.btn-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,100,44,0.35);
}

.navbar.scrolled .btn-cta {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===========================
   PAGE BANNER
   =========================== */
.page-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,4,65,0.72) 0%, rgba(3,4,65,0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.page-banner .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.page-banner .breadcrumb-item a { color: var(--accent-light); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===========================
   SECTION UTILITIES
   =========================== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-bg { background: var(--bg-light); }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading .subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-heading .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-heading .divider span {
  display: block;
  height: 3px;
  border-radius: 2px;
}

.section-heading .divider .line { width: 48px; background: var(--border); }
.section-heading .divider .dot  { width: 36px; background: var(--primary); }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,100,44,0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider { position: relative; overflow: hidden; }

.hero-slide {
  position: relative;
 
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,4,65,0.75) 0%, rgba(3,4,65,0.15) 100%);
  display: flex;
  align-items: center;
}

.hero-slide .slide-content {
  color: var(--white);
  max-width: 560px;
}

.hero-slide .slide-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-slide h1 {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-slide p {
  font-size: 16px;
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 420px;
}

/* Slick overrides – hero */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 48px; height: 48px;
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover { background: var(--accent); }

.hero-slider .slick-prev { left: 24px; }
.hero-slider .slick-next { right: 24px; }

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
  font-size: 20px;
  color: var(--white);
  opacity: 1;
}

.hero-slider .slick-dots { bottom: 24px; }
.hero-slider .slick-dots li button::before { color: rgba(255,255,255,0.6); font-size: 10px; }
.hero-slider .slick-dots li.slick-active button::before { color: var(--white); }

/* ===========================
   CATEGORY STRIP
   =========================== */
.category-strip { padding: 56px 0; }

.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img { transform: scale(1.06); }

.category-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(3,4,65,0.82) 0%, transparent 100%);
  color: var(--white);
  padding: 32px 16px 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.category-card .card-label span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* ===========================
   OFFERS BANNER
   =========================== */
.offers-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.offers-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,4,65,0.85) 0%, rgba(3,4,65,0.3) 100%);
  display: flex;
  align-items: center;
}

.offers-banner .offer-text { color: var(--white); }
.offers-banner .offer-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.offers-banner h2 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.offers-banner .highlight { color: var(--accent-light); }
.offers-banner p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }

/* ===========================
   PRODUCT CARDS
   =========================== */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--bg-light);
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.product-card:hover .img-wrap img { transform: scale(1.08); }

.product-card .badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-card .card-body { padding: 16px; }
.product-card .brand-name { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.product-card .prod-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin: 4px 0; }
.product-card .prod-price { font-size: 15px; font-weight: 800; color: var(--primary); }
.product-card .prod-price del { font-size: 12px; font-weight: 400; color: var(--text-muted); margin-right: 6px; }

/* Product Slick overrides */
.product-slider .slick-prev,
.product-slider .slick-next {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 10;
}

.product-slider .slick-prev::before,
.product-slider .slick-next::before { color: var(--white); font-size: 18px; }
.product-slider .slick-prev { left: -16px; }
.product-slider .slick-next { right: -16px; }

/* ===========================
   WHY SPECTICA
   =========================== */
.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card .icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card .icon-wrap i { font-size: 28px; color: var(--white); }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-muted); }

/* ===========================
   BRAND LOGO STRIP (home strip style)
   =========================== */
.brands-strip { padding: 40px 0; background: var(--white); }

.brand-logo-item {
  padding: 12px 24px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: all var(--transition);
}

.brand-logo-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* ===========================
   BRAND CARD SLIDER (card style)
   =========================== */
.brand-card-item {
  padding: 6px 10px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.brand-card-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  margin-bottom: 12px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(3,4,65,0.04);
}

.brand-card-item:hover .brand-card-box {
  border-color: rgba(3,4,65,0.18);
  box-shadow: 0 6px 20px rgba(3,4,65,0.1);
  transform: translateY(-3px);
}

.brand-card-box img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition);
}

.brand-card-item:hover .brand-card-box img {
  filter: grayscale(0%) opacity(1);
}

.brand-card-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  transition: color var(--transition);
}

.brand-card-item:hover .brand-card-name { color: var(--primary); }

/* Slick overrides for card slider */
.brand-card-slider .slick-track { display: flex; align-items: stretch; }
.brand-card-slider .slick-slide { height: auto; }
.brand-card-slider .slick-slide > div { height: 100%; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-card .stars { color: #f5a623; font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .reviewer-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid var(--primary);
}

.testimonial-card .reviewer-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.testimonial-card .reviewer-title { font-size: 12px; color: var(--text-muted); }

/* Testimonial Slick */
.testimonial-slider .slick-dots li button::before { color: var(--border); font-size: 10px; }
.testimonial-slider .slick-dots li.slick-active button::before { color: var(--primary); }

/* ===========================
   BLOG CARDS
   =========================== */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-card .blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img { transform: scale(1.04); }

.blog-card .blog-body { padding: 20px; }
.blog-card .blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.blog-card .blog-meta { font-size: 12px; color: var(--text-muted); }
.blog-card .blog-meta i { margin-right: 4px; }
.blog-card .read-more { font-size: 13px; font-weight: 700; color: var(--primary); }
.blog-card .read-more:hover { color: var(--accent); }
.blog-card .read-more i { transition: transform var(--transition); }
.blog-card .read-more:hover i { transform: translateX(4px); }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
}

footer .footer-logo { height: 48px; filter: brightness(0) invert(1); margin-bottom: 16px; }

footer p { font-size: 13.5px; line-height: 1.7; }

footer h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

footer ul li a:hover { color: var(--accent-light); padding-left: 4px; }

footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  margin-right: 8px;
  font-size: 15px;
  transition: all var(--transition);
}

footer .social-icons a:hover { background: var(--accent); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  margin-top: 48px;
}

.footer-bottom p { font-size: 13px; margin: 0; opacity: 0.65; }

footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

footer .contact-item i {
  font-size: 16px;
  color: var(--accent-light);
  margin-top: 2px;
  flex-shrink: 0;
}

footer .contact-item span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ===========================
   BACK TO TOP
   =========================== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 999;
}

#backToTop.visible { display: flex; }
#backToTop:hover { background: var(--accent); transform: translateY(-3px); }

/* ===========================
   ABOUT PAGE
   =========================== */
.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-card .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .stat-num span { color: var(--accent); }
.stat-card p { font-size: 14px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.stats-section {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px 20px;
}

.about-story-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-accent-bar {
  width: 52px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-card .team-body { padding: 18px; }
.team-card h5 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); }

/* ===========================
   BRANDS PAGE
   =========================== */
.brand-grid-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.brand-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
}

.brand-grid-card img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition);
}

.brand-grid-card:hover img { filter: grayscale(0%) opacity(1); }
.brand-grid-card p { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin: 0; transition: color var(--transition); }
.brand-grid-card:hover p { color: var(--primary); }

/* ===========================
   SERVICES PAGE
   =========================== */
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.service-card .service-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img { transform: scale(1.04); }

.service-card .service-body { padding: 24px; }

.service-card .service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card .service-icon i { font-size: 22px; color: var(--white); }
.service-card h4 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   BLOG PAGE
   =========================== */
.blog-grid-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-grid-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-grid-card .blog-img-wrap {
  height: 240px;
  overflow: hidden;
}

.blog-grid-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid-card:hover .blog-img-wrap img { transform: scale(1.05); }

.blog-grid-card .blog-body { padding: 24px; }
.blog-grid-card .blog-tag {
  display: inline-block;
  background: rgba(3,4,65,0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-grid-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-grid-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.blog-grid-card .blog-meta { display: flex; gap: 18px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.blog-grid-card .blog-meta i { margin-right: 4px; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-item .icon-box {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-box i { font-size: 18px; color: var(--accent-light); }
.contact-info-item h6 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--white); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3,4,65,0.1);
  outline: none;
}

.contact-form-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe { display: block; border: none; }

/* ===========================
   SHOP PAGE
   =========================== */
.shop-filter {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}

.shop-filter h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 16px;
}

.shop-filter .filter-group { margin-bottom: 24px; }
.shop-filter .filter-group h6 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-check input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; cursor: pointer; }
.filter-check label { font-size: 13px; color: var(--text-muted); cursor: pointer; }

.color-dots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.color-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.color-dot:hover, .color-dot.active { border-color: var(--primary); transform: scale(1.15); }

.price-range input[type="range"] { accent-color: var(--primary); width: 100%; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.shop-toolbar p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

.shop-product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.shop-product-card .badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.shop-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.shop-product-card .img-wrap {
  height: 200px;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.shop-product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.shop-product-card:hover .img-wrap img { transform: scale(1.08); }
.shop-product-card .wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.shop-product-card .wishlist-btn:hover { color: #e74c3c; }
.shop-product-card .card-body { padding: 16px; }
.shop-product-card .brand { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; }
.shop-product-card .name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin: 4px 0; }
.shop-product-card .price { font-size: 16px; font-weight: 800; color: var(--primary); }
.shop-product-card .price del { font-size: 12px; font-weight: 400; color: var(--text-muted); margin-right: 6px; }
.shop-product-card .rating { font-size: 12px; color: #f5a623; margin-bottom: 12px; }
.shop-product-card .rating span { color: var(--text-muted); margin-left: 4px; }
.shop-product-card .add-to-cart {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.pagination{
  display: none;

}

.shop-product-card .add-to-cart:hover { background: var(--accent); }

.category-shop-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.category-shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.category-shop-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-shop-card:hover img { transform: scale(1.06); }

.category-shop-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,4,65,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.category-shop-card .overlay-text { color: var(--white); }
.category-shop-card .overlay-text h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.category-shop-card .overlay-text span { font-size: 12px; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
  .hero-slide { height: 440px; }
  .navbar-collapse { background: var(--white); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow-md); margin-top: 8px; }
  .navbar.scrolled .navbar-collapse { background: var(--primary-dark); }
  .page-banner { height: 220px; }
}

@media (max-width: 767.98px) {
  .hero-slide { height: 340px; }
  .hero-slide h1 { font-size: 26px; }
  .hero-slide p { font-size: 14px; display: none; }
  .section { padding: 48px 0; }
  .offers-banner { height: 240px; }
  .offers-banner h2 { font-size: 22px; }
  .hero-slider .slick-prev, .hero-slider .slick-next { display: none !important; }
}

@media (max-width: 575.98px) {
  .hero-slide { height: 280px; }
  .page-banner { height: 180px; }
  .category-card img { height: 170px; }
}
