/* ==========================================================================
   AJR WINDOWS & DOORS — GLOBAL STYLESHEET
   ========================================================================== */

:root{
  --ajr-blue: #0b3ea8;
  --ajr-blue-dark: #0930a0;
  --ajr-dark: #0a2a5e;
  --ajr-navy: #0d1b2a;
  --ajr-light-blue: #eef2f9;
  --text-muted: #6b7280;
}

*{ box-sizing: border-box; }

body{
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

a{ transition: all .2s ease; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar{
  background:#fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand img.logo-img{
  height: 42px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link{
  color:#333 !important;
  font-weight:500;
  margin: 0 10px;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{
  color: var(--ajr-blue) !important;
}
.navbar-nav .nav-link.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background: var(--ajr-blue);
  border-radius: 2px;
}
.btn-quote{
  background: var(--ajr-blue);
  color:#fff !important;
  border-radius: 6px;
  padding: 9px 22px;
  font-weight:600;
  text-decoration:none;
  display: inline-block;
  transition: transform .2s ease, background .2s ease;
}
.btn-quote:hover{
  background: var(--ajr-blue-dark);
  transform: translateY(-2px);
}
.navbar-toggler{ border:none; }
.navbar-toggler:focus{ box-shadow:none; }

/* ==========================================================================
   BUTTONS (shared)
   ========================================================================== */
.btn-primary-custom{
  background: var(--ajr-blue);
  color:#fff;
  border-radius:6px;
  padding:11px 24px;
  font-weight:600;
  border:none;
  text-decoration:none;
  display:inline-block;
  transition: transform .2s ease, background .2s ease;
}
.btn-primary-custom:hover{
  background: var(--ajr-blue-dark);
  color:#fff;
  transform: translateY(-3px);
}
.btn-outline-custom{
  border:1px solid #fff;
  color:#fff;
  border-radius:6px;
  padding:10px 22px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition: all .2s ease;
}
.btn-outline-custom:hover{
  background:#fff;
  color: var(--ajr-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   HERO (Home)
   ========================================================================== */
.hero{
  position: relative;
  min-height: 620px;
  background: linear-gradient(90deg, rgba(5,15,35,0.88) 0%, rgba(5,15,35,0.55) 45%, rgba(5,15,35,0.15) 100%),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff;
}
.hero .subtitle{
  color:#4da3ff;
  font-weight:600;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.hero h1{
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
}
.hero p.lead-text{
  color:#dbe3f0;
  max-width: 480px;
}
.feature-check{
  color:#e8eefc;
  font-weight:500;
}
.feature-check i{
  color:#3b8dff;
  margin-right:8px;
}

/* ==========================================================================
   GENERIC PAGE HERO (About / Categories / Catalog / Products / Contact)
   ========================================================================== */
.page-hero{
  background: linear-gradient(90deg, var(--ajr-light-blue) 0%, var(--ajr-light-blue) 55%, #ffffff 100%);
  padding: 55px 0;
}
.page-hero.text-center-hero{ text-align:center; }
.page-hero .label-small{
  color: var(--ajr-blue);
  font-weight:700;
  letter-spacing:1px;
  font-size:0.8rem;
}
.page-hero .label-small i{ font-size:0.6rem; margin-right:6px; }
.page-hero h1{
  font-weight:800;
  font-size: 2.5rem;
  line-height:1.2;
}
.page-hero h1 span{ color: var(--ajr-blue); }
.page-hero p{ color:#666; }
.page-hero-img{
  border-radius: 10px;
  width:100%;
  height: 320px;
  object-fit: cover;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-title{
  text-align:center;
  font-weight:700;
  position:relative;
  margin-bottom: 45px;
}
.section-title::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  background: var(--ajr-blue);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ==========================================================================
   CATEGORY CARDS (Home + Categories)
   ========================================================================== */
.category-card{
  border:1px solid #eee;
  border-radius:8px;
  overflow:hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  height:100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.category-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}
.category-card .cat-body{ padding: 14px 18px; }
.category-card h5{ font-weight:600; margin-bottom:6px; }
.category-card a{
  color: var(--ajr-blue);
  font-weight:600;
  text-decoration:none;
  font-size:0.9rem;
}

/* Bigger category cards (Categories page) */
.cat-card{
  border:1px solid #eee;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height:100%;
  transition: transform .25s ease, box-shadow .25s ease;
  background:#fff;
}
.cat-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.cat-thumb{ position:relative; height: 220px; overflow:hidden; }
.cat-thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.cat-card:hover .cat-thumb img{ transform: scale(1.08); }
.cat-count-badge{
  position:absolute; top:14px; right:14px;
  background: rgba(255,255,255,0.92);
  color: var(--ajr-blue);
  font-size:0.75rem; font-weight:700;
  padding: 5px 12px; border-radius: 20px;
}
.cat-icon-badge{
  position:absolute; bottom:-24px; left:20px;
  width:52px; height:52px; border-radius:50%;
  background: var(--ajr-blue);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 12px rgba(11,62,168,0.35);
}
.cat-icon-badge i{ color:#fff; font-size:1.25rem; }
.cat-body{ padding: 38px 22px 22px; }
.cat-body h5{ font-weight:700; margin-bottom:8px; }
.cat-body p{ font-size:0.87rem; color:#777; min-height:44px; }
.cat-body a{ color: var(--ajr-blue); font-weight:600; text-decoration:none; font-size:0.9rem; }
.cat-body a i{ transition: transform .2s ease; }
.cat-card:hover .cat-body a i{ transform: translateX(4px); }

/* ==========================================================================
   WHY CHOOSE (Home)
   ========================================================================== */
.why-choose img{
  border-radius: 8px;
  width:100%;
  height: 100%;
  object-fit:cover;
}
.why-choose .label-small{
  color: var(--ajr-blue);
  font-weight:700;
  letter-spacing:1px;
  font-size:0.85rem;
}
.why-choose h2{ font-weight:700; }
.list-check li{ margin-bottom:10px; font-weight:500; }
.list-check i{ color:#2f7dfa; margin-right:10px; }

/* ==========================================================================
   PRODUCT CARDS (Home Featured + Products/Shop page)
   ========================================================================== */
.product-card{
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.product-thumb{ position:relative; height: 190px; }
.product-thumb img{ width:100%; height:100%; object-fit:cover; }
.product-badge{
  position:absolute; top:12px; left:12px;
  width:32px; height:32px; border-radius:50%;
  background: var(--ajr-blue); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem;
}
.product-body{ padding: 16px 18px; }
.product-body .series{ color:#888; font-size:0.85rem; }
.product-body h5, .product-body h6{ font-weight:600; margin: 4px 0; }
.product-body p{ font-size:0.85rem; color:#777; }
.stars i{ color:#f5b301; font-size:0.85rem; }
.product-body a{
  color: var(--ajr-blue); font-weight:600;
  text-decoration:none; font-size:0.9rem;
}

/* ==========================================================================
   PROCESS STEPS (Home)
   ========================================================================== */
.process-section{ background: var(--ajr-light-blue); padding: 60px 0; }
.process-step{ text-align:center; position:relative; }
.process-icon{
  width:75px; height:75px; border-radius:50%;
  border:2px solid var(--ajr-blue);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 15px; position:relative; background:#fff;
  transition: transform .3s ease;
}
.process-step:hover .process-icon{ transform: scale(1.08); }
.process-icon i{ font-size:1.5rem; color: var(--ajr-blue); }
.step-number{
  position:absolute; top:-6px; right:-6px;
  background: var(--ajr-blue); color:#fff;
  width:22px; height:22px; border-radius:50%;
  font-size:0.75rem; display:flex; align-items:center; justify-content:center;
  font-weight:700;
}
.process-step h6{ font-weight:700; margin-bottom:6px; }
.process-step p{ font-size:0.85rem; color:#777; max-width:180px; margin: 0 auto; }
.dots-line{
  border-top: 2px dashed #c6d3ea;
  position:absolute; top:37px; left:50%; width:100%; z-index:-1;
}

/* ==========================================================================
   PROJECTS (Home)
   ========================================================================== */
.project-thumb{
  position:relative; overflow:hidden;
  border-radius:6px; height: 260px;
}
.project-thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.project-thumb:hover img{ transform: scale(1.08); }
.project-overlay{
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color:#fff; padding: 15px;
}
.project-overlay a{ color:#fff; text-decoration:none; font-weight:600; font-size:0.85rem; }

/* ==========================================================================
   TESTIMONIALS (Home)
   ========================================================================== */
.testimonial-card{
  border:1px solid #eee; border-radius:8px; padding: 25px;
  height:100%; box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform .2s ease;
}
.testimonial-card:hover{ transform: translateY(-5px); }
.testimonial-card .quote-icon{ color: var(--ajr-blue); font-size:1.4rem; opacity:0.5; }
.testimonial-card p{ color:#666; font-size:0.92rem; }
.testimonial-card h6{ font-weight:700; margin-bottom:0; }
.testimonial-card span{ font-size:0.8rem; color:#999; }

/* ==========================================================================
   FEATURE STRIP (Products / Categories)
   ========================================================================== */
.feature-strip{ background: var(--ajr-light-blue); border-radius: 10px; padding: 35px 20px; }
.feature-item{ text-align:center; }
.feature-item .icon-circle{
  width:60px; height:60px; border-radius:50%;
  background:#fff; display:flex; align-items:center; justify-content:center;
  margin: 0 auto 12px; box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform .3s ease;
}
.feature-item:hover .icon-circle{ transform: translateY(-5px); }
.feature-item .icon-circle i{ font-size:1.4rem; color: var(--ajr-blue); }
.feature-item h6{ font-weight:700; font-size:0.95rem; margin-bottom:6px; }
.feature-item p{ font-size:0.8rem; color:#777; margin-bottom:0; }

/* ==========================================================================
   WHO WE ARE / VALUES (About)
   ========================================================================== */
.vertical-divider{ border-left: 1px solid #e5e5e5; }
.value-item{ text-align:center; }
.value-icon{
  width:70px; height:70px; border-radius:50%;
  background: var(--ajr-light-blue);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px; transition: transform .3s ease;
}
.value-item:hover .value-icon{ transform: scale(1.1); }
.value-icon i{ font-size:1.5rem; color: var(--ajr-blue); }
.value-item h6{ font-weight:700; margin-bottom:8px; }
.value-item p{ font-size:0.85rem; color:#777; max-width:220px; margin:0 auto; }

/* Stats strip (About) */
.stats-strip{ background: var(--ajr-light-blue); border-radius: 10px; padding: 40px 20px; }
.stat-item{ text-align:center; }
.stat-icon{ color: var(--ajr-blue); font-size:1.7rem; margin-bottom:12px; }
.stat-item h3{ font-weight:800; color: var(--ajr-dark); margin-bottom:4px; }
.stat-item p{ font-size:0.85rem; color:#666; margin-bottom:0; }

/* ==========================================================================
   FILTER BAR (Products/Shop, Catalog)
   ========================================================================== */
.filter-bar{
  background:#fff; border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 16px 24px; margin-top: -35px;
  position: relative; z-index: 5;
}
.filter-tabs a{
  color:#555; text-decoration:none; font-weight:500;
  margin-right: 22px; padding-bottom: 6px; display:inline-block;
}
.filter-tabs a.active{
  color: var(--ajr-blue); font-weight:700;
  border-bottom: 2px solid var(--ajr-blue);
}
.sort-select{
  border:1px solid #ddd; border-radius:6px;
  padding: 6px 12px; font-size:0.9rem; color:#555;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.info-card{
  background:#fff; border:1px solid #eee; border-radius:10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  padding: 30px 20px; text-align:center; height:100%;
  transition: transform .2s ease;
}
.info-card:hover{ transform: translateY(-5px); }
.info-icon{
  width:60px; height:60px; border-radius:50%;
  background: var(--ajr-light-blue);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.info-icon i{ font-size:1.4rem; color: var(--ajr-blue); }
.info-card h6{ font-weight:700; margin-bottom:8px; }
.info-card p{ font-size:0.88rem; color:#666; margin-bottom:0; }

.form-card{
  background:#fff; border:1px solid #eee; border-radius:10px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06); padding: 35px;
}
.form-card h4{ font-weight:700; margin-bottom:6px; }
.form-card p.sub{ color:#777; font-size:0.9rem; margin-bottom:25px; }
.form-control, .form-select{
  border-radius:6px; border:1px solid #ddd; padding: 10px 14px; font-size:0.9rem;
}
.form-control:focus, .form-select:focus{
  border-color: var(--ajr-blue);
  box-shadow: 0 0 0 0.15rem rgba(11,62,168,0.15);
}
.btn-submit{
  background: var(--ajr-blue); color:#fff; font-weight:600;
  border-radius:6px; padding: 12px 28px; border:none;
  transition: background .2s ease, transform .2s ease;
}
.btn-submit:hover{ background: var(--ajr-blue-dark); transform: translateY(-2px); color:#fff; }

.map-wrap{
  border-radius:10px; overflow:hidden; height: 100%;
  min-height: 320px; box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}
.map-wrap iframe{ width:100%; height:100%; border:0; display:block; min-height:320px; }

.hours-card{ background: var(--ajr-light-blue); border-radius:10px; padding: 22px 26px; margin-top: 20px; }
.hours-card h6{ font-weight:700; margin-bottom:12px; }
.hours-row{
  display:flex; justify-content:space-between; font-size:0.88rem;
  color:#555; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-row:last-child{ border-bottom:none; }
.hours-row span:last-child{ font-weight:600; color:#333; }

.accordion-button{ font-weight:600; color:#222; }
.accordion-button:not(.collapsed){ background: var(--ajr-light-blue); color: var(--ajr-blue); box-shadow:none; }
.accordion-button:focus{ box-shadow:none; border-color:#ddd; }
.accordion-item{ border:1px solid #eee; border-radius:8px !important; overflow:hidden; margin-bottom: 14px; }
.accordion-body{ color:#666; font-size:0.9rem; }

/* ==========================================================================
   CTA BANNER (shared)
   ========================================================================== */
.cta-banner{
  background: var(--ajr-blue); color:#fff; border-radius: 10px;
  padding: 40px; position: relative; overflow:hidden;
}
.cta-banner h3, .cta-banner h4{ font-weight:700; margin-bottom:6px; }
.cta-banner p{ color:#dbe6ff; margin-bottom:0; }
.btn-cta{
  background:#fff; color: var(--ajr-blue); font-weight:700; border-radius:6px;
  padding:12px 26px; border:none; white-space:nowrap; text-decoration:none;
  transition: transform .2s ease;
}
.btn-cta:hover{ transform: translateY(-3px); color: var(--ajr-blue); }
.cta-banner::before{
  content:""; position:absolute; right:-30px; top:-30px; width:180px; height:180px;
  border:2px solid rgba(255,255,255,0.15); border-radius:20px; transform: rotate(20deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{ background: var(--ajr-navy); color:#c7d0e0; padding-top: 45px; }
footer .footer-logo{ height: 48px; margin-bottom: 12px; }
footer h6{ color:#fff; font-weight:700; margin-bottom: 14px; }
footer p, footer a{ color:#c7d0e0; text-decoration:none; font-size:0.88rem; }
footer .footer-links a{ display:block; line-height:2.1; }
footer a:hover{ color:#fff; }
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background: rgba(255,255,255,0.08); margin-right:8px; color:#fff;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background: var(--ajr-blue); transform: translateY(-3px); color:#fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1); margin-top:30px;
  padding: 15px 0; font-size:0.78rem; color:#8894a8;
}
.newsletter-input{ border-radius:6px 0 0 6px; border:none; padding:10px 14px; font-size:0.85rem; }
.newsletter-btn{
  background: var(--ajr-blue); color:#fff; border-radius:0 6px 6px 0;
  border:none; padding: 0 18px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991.98px){
  .navbar-collapse{
    background:#fff;
    padding: 15px 10px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  .navbar-nav .nav-link.active::after{ display:none; }
  .hero{ min-height: 520px; text-align:center; }
  .hero h1{ font-size: 2.2rem; }
  .feature-check{ justify-content:center; }
  .why-choose img{ margin-bottom: 20px; }
  .vertical-divider{ border-left:none; border-top:1px solid #e5e5e5; padding-top:30px; margin-top:30px; }
  .cta-banner{ text-align:center; }
  .cta-banner .d-flex{ flex-direction:column; }
}

@media (max-width: 767.98px){
  .hero h1{ font-size: 1.9rem; }
  .hero .lead-text{ margin:0 auto 20px; }
  .page-hero h1{ font-size: 2rem; }
  .section-title{ font-size: 1.4rem; }
  .process-step .dots-line{ display:none; }
  .project-thumb{ height: 200px; }
  .filter-bar{ margin-top: 15px; }
  .filter-tabs a{ margin-right: 14px; font-size: 0.9rem; }
  .cat-thumb{ height:180px; }
}

@media (max-width: 575.98px){
  .hero{ min-height: 460px; }
  .hero h1{ font-size: 1.6rem; }
  .btn-primary-custom, .btn-outline-custom{ width:100%; margin-bottom:10px; text-align:center; }
  .page-hero h1{ font-size: 1.6rem; }
  .cta-banner{ padding: 28px 20px; }
  .stat-item h3{ font-size: 1.6rem; }
}

/* AOS fallback tweaks */
[data-aos]{ pointer-events: auto; }

/* ==========================================================================
   CATALOGUE PAGE
   ========================================================================== */
.brochure-card{
  border:1px solid #eee;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height:100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brochure-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.brochure-thumb{
  position:relative;
  height: 200px;
  overflow:hidden;
}
.brochure-thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.brochure-card:hover .brochure-thumb img{ transform: scale(1.08); }
.brochure-pdf-tag{
  position:absolute;
  top:14px; left:14px;
  background: var(--ajr-blue);
  color:#fff;
  font-size:0.72rem;
  font-weight:700;
  padding: 5px 11px;
  border-radius: 20px;
  display:flex;
  align-items:center;
  gap:6px;
}
.brochure-body{ padding: 20px 22px; }
.brochure-body h5{ font-weight:700; margin-bottom:6px; }
.brochure-body p{ font-size:0.87rem; color:#777; margin-bottom:16px; min-height:42px; }
.brochure-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:0.8rem;
  color:#999;
  border-top:1px solid #f0f0f0;
  padding-top:14px;
}
.brochure-meta a{
  color: var(--ajr-blue);
  font-weight:700;
  text-decoration:none;
}
.brochure-meta a i{ transition: transform .2s ease; }
.brochure-card:hover .brochure-meta a i{ transform: translateY(3px); }

.catalog-request-card{
  background: var(--ajr-light-blue);
  border-radius: 12px;
  padding: 40px;
}
.catalog-request-card h4{ font-weight:700; }
.catalog-request-card p{ color:#666; }
.catalog-request-card .form-control{
  background:#fff;
}

.full-catalog-banner{
  background: linear-gradient(90deg, var(--ajr-dark), var(--ajr-blue));
  border-radius: 12px;
  padding: 45px;
  color:#fff;
  position: relative;
  overflow:hidden;
}
.full-catalog-banner h3{ font-weight:800; }
.full-catalog-banner p{ color:#dbe6ff; max-width:480px; }
.full-catalog-banner::after{
  content:"\f1c1";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  right:30px;
  bottom:-20px;
  font-size:9rem;
  color: rgba(255,255,255,0.06);
}

@media (max-width: 767.98px){
  .catalog-request-card{ padding: 26px; }
  .full-catalog-banner{ padding: 30px 22px; text-align:center; }
  .full-catalog-banner p{ margin: 0 auto; }
}

/* ==========================================================================
   PRODUCTS / SHOP PAGE
   ========================================================================== */
.shop-product-card{
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  height:100%;
  transition: transform .25s ease, box-shadow .25s ease, opacity .3s ease;
}
.shop-product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.shop-thumb{ position:relative; height: 190px; overflow:hidden; }
.shop-thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.shop-product-card:hover .shop-thumb img{ transform: scale(1.07); }
.shop-badge{
  position:absolute; top:12px; left:12px;
  background: var(--ajr-blue); color:#fff;
  font-size:0.7rem; font-weight:700;
  padding: 4px 10px; border-radius: 20px;
}
.shop-wishlist{
  position:absolute; top:12px; right:12px;
  width:32px; height:32px; border-radius:50%;
  background: rgba(255,255,255,0.9);
  display:flex; align-items:center; justify-content:center;
  color:#999; font-size:0.85rem;
  transition: all .2s ease;
  cursor:pointer;
}
.shop-wishlist:hover{ background: var(--ajr-blue); color:#fff; }
.shop-body{ padding: 16px 18px; }
.shop-body .cat-label{ font-size:0.78rem; color:#999; text-transform:uppercase; letter-spacing:0.5px; }
.shop-body h6{ font-weight:700; margin: 4px 0 6px; }
.shop-price-row{
  display:flex; justify-content:space-between; align-items:center;
  margin-top: 12px;
}
.shop-price{ font-weight:700; color: var(--ajr-dark); font-size:1.05rem; }
.shop-price .old-price{
  text-decoration: line-through;
  color:#aaa;
  font-weight:400;
  font-size:0.85rem;
  margin-left: 6px;
}
.btn-add-cart{
  width:38px; height:38px; border-radius:8px;
  background: var(--ajr-light-blue);
  color: var(--ajr-blue);
  border:none;
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.btn-add-cart:hover{ background: var(--ajr-blue); color:#fff; }

/* Filter buttons (JS driven) */
.shop-filter-bar{
  background:#fff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 16px 24px;
  margin-top: -35px;
  position: relative;
  z-index: 5;
}
.filter-btn{
  border:1px solid #ddd;
  background:#fff;
  color:#555;
  font-size:0.85rem;
  font-weight:500;
  padding: 7px 16px;
  border-radius: 30px;
  margin: 4px 6px 4px 0;
  transition: all .2s ease;
}
.filter-btn.active,
.filter-btn:hover{
  background: var(--ajr-blue);
  color:#fff;
  border-color: var(--ajr-blue);
}
.shop-item{ transition: opacity .3s ease, transform .3s ease; }
.shop-item.hide{ display:none; }

@media (max-width: 767.98px){
  .shop-filter-bar{ margin-top: 15px; text-align:center; }
  .shop-filter-bar .sort-select{ margin-top:10px; }
}