*{margin:0;padding:0;box-sizing:border-box;}
:root{
  --or:#ff7000;
  --or2:#e56200;
  --or3:#fff3e8;
  --wh:#ffffff;
  --bg:#fafafa;
  --txt:#1c1c1c;
  --txt2:#666;
  --brd:#e8e0d8;
  --sh:0 4px 24px rgba(255,112,0,.13);
}
html{scroll-behavior:smooth;}
body{font-family:'Poppins',sans-serif;background:#fff;color:var(--txt);overflow-x:hidden;}

.topbar{
  background:linear-gradient(90deg,var(--or2) 0%,var(--or) 60%,#ff9500 100%);
  color:#fff;text-align:center;padding:8px 20px;
  font-size:.78rem;font-weight:600;letter-spacing:.4px;
  display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;
}
.topbar a{color:#fff;text-decoration:none;}
.topbar span{display:flex;align-items:center;gap:6px;}

header{
  position:sticky;top:0;z-index:900;
  background:#fff;
  box-shadow:0 2px 16px rgba(255,112,0,.12);
}
.hdr-inner{
  max-width:1400px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 36px;height:72px;
}

.logo{display:flex;align-items:center;gap:13px;text-decoration:none;}
.logo-box{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,var(--or),var(--or2));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(255,112,0,.38);
  flex-shrink:0;
}
.logo-box i{color:#fff;font-size:1.5rem;}
.logo-words h1{
  font-family:'Playfair Display',serif;
  font-size:1.5rem;font-weight:900;color:var(--or);
  line-height:1.05;letter-spacing:.3px;
}
.logo-words small{
  font-size:.62rem;font-weight:600;color:var(--txt2);
  letter-spacing:1.8px;text-transform:uppercase;display:block;
}

.dnav{display:flex;align-items:center;gap:2px;}
.dnav a{
  padding:8px 17px;border-radius:9px;
  text-decoration:none;color:var(--txt);
  font-weight:600;font-size:.88rem;transition:all .2s;
}
.dnav a:hover,.dnav a.active{color:var(--or);background:var(--or3);}
.dnav .cta{
  margin-left:6px;background:var(--or);color:#fff!important;
  border-radius:9px;padding:9px 20px;
  box-shadow:0 3px 12px rgba(255,112,0,.32);
  display:flex;align-items:center;gap:7px;
}
.dnav .cta:hover{background:var(--or2);transform:translateY(-1px);}

.ham{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none;}
.ham span{width:25px;height:2.5px;background:var(--or);border-radius:3px;transition:all .3s;display:block;}
.ham.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.ham.open span:nth-child(2){opacity:0;}
.ham.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

.sidebar{
  position:fixed;top:0;left:-100%;width:290px;height:100%;
  background:#fff;z-index:9000;overflow-y:auto;
  box-shadow:6px 0 40px rgba(0,0,0,.14);transition:left .35s cubic-bezier(.4,0,.2,1);
}
.sidebar.open{left:0;}
.sb-head{
  background:linear-gradient(135deg,var(--or),var(--or2));
  padding:24px 20px 20px;
  display:flex;align-items:center;justify-content:space-between;
}
.sb-logo-txt{color:#fff;font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:900;}
.sb-logo-sub{color:rgba(255,255,255,.75);font-size:.65rem;letter-spacing:1.5px;text-transform:uppercase;}
.sb-close{
  background:rgba(255,255,255,.22);border:none;color:#fff;
  width:34px;height:34px;border-radius:50%;cursor:pointer;
  font-size:1rem;display:flex;align-items:center;justify-content:center;
}
.sb-nav{padding:12px 0;}
.sb-nav a{
  display:flex;align-items:center;justify-content:space-between;
  padding:13px 22px;color:var(--txt);text-decoration:none;
  font-weight:600;font-size:.9rem;
  border-left:3px solid transparent;transition:all .2s;
}
.sb-nav a:hover,.sb-nav a.active{
  color:var(--or);background:var(--or3);border-left-color:var(--or);
}
.sb-nav .sb-icon{color:var(--or);width:22px;text-align:center;margin-right:10px;}
.sub-arrow{color:var(--txt2);font-size:.75rem;transition:transform .3s;}
.sub-arrow.rot{transform:rotate(90deg);}
.sb-sub{
  max-height:0;overflow:hidden;transition:max-height .35s;
  background:#fdf8f4;
}
.sb-sub.open{max-height:320px;}
.sb-sub a{
  padding:10px 20px 10px 54px;
  font-weight:500;font-size:.84rem;
  border-left:none;
}
.sb-sub a i{color:var(--or);margin-right:8px;font-size:.8rem;}
.sb-div{height:1px;background:var(--brd);margin:6px 18px;}
.sb-contact{padding:14px 22px;}
.sb-contact h5{color:var(--or);font-size:.72rem;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:10px;}
.sb-contact a{
  display:flex;align-items:center;gap:10px;
  color:var(--txt);text-decoration:none;
  font-size:.85rem;font-weight:500;padding:6px 0;border-left:none;
}
.sb-contact a i{color:var(--or);width:16px;}
.overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.42);z-index:8000;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.overlay.show{opacity:1;pointer-events:all;}

.search-bar{
  background:#fff;border-bottom:1px solid var(--brd);
  padding:12px 36px;
}
.s-wrap{max-width:680px;margin:0 auto;position:relative;}
.s-wrap input{
  width:100%;padding:12px 52px 12px 20px;
  border:2px solid var(--brd);border-radius:50px;
  font-family:'Poppins',sans-serif;font-size:.9rem;font-weight:500;
  outline:none;transition:.25s;background:#fafafa;color:var(--txt);
}
.s-wrap input:focus{border-color:var(--or);background:#fff;box-shadow:0 0 0 3px rgba(255,112,0,.1);}
.s-wrap input::placeholder{color:#bbb;}
.s-btn{
  position:absolute;right:6px;top:50%;transform:translateY(-50%);
  background:var(--or);border:none;color:#fff;
  width:40px;height:40px;border-radius:50%;cursor:pointer;font-size:.95rem;
  transition:background .2s;
}
.s-btn:hover{background:var(--or2);}
.s-drop{
  position:absolute;top:calc(100%+6px);left:0;right:0;
  background:#fff;border:2px solid var(--or);border-radius:18px;
  box-shadow:0 12px 40px rgba(255,112,0,.13);z-index:600;
  overflow:hidden;display:none;
}
.s-drop.show{display:block;}
.s-opt{
  display:flex;align-items:center;gap:12px;padding:12px 20px;
  cursor:pointer;font-weight:600;font-size:.88rem;transition:background .15s;
  color:var(--txt);
}
.s-opt:hover{background:var(--or3);color:var(--or);}
.s-opt i{color:var(--or);width:22px;text-align:center;}

.sec-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--or3);color:var(--or);
  font-size:.72rem;font-weight:700;letter-spacing:1.8px;
  text-transform:uppercase;padding:5px 14px;border-radius:50px;
  margin-bottom:10px;
}
.sec-h{
  font-family:'Playfair Display',serif;
  font-size:2.1rem;font-weight:900;color:var(--txt);line-height:1.15;
}
.sec-h span{color:var(--or);}
.sec-p{color:var(--txt2);font-size:.93rem;font-weight:500;margin-top:8px;}

.cats{padding:60px 36px 48px;max-width:1400px;margin:0 auto;}
.cats-head{text-align:center;margin-bottom:44px;}
.cat-row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:32px;
}
.cat-item{
  display:flex;flex-direction:column;align-items:center;gap:14px;
  cursor:pointer;transition:transform .3s;width:130px;
}
.cat-item:hover{transform:translateY(-9px);}
.cat-ring{
  width:115px;height:115px;border-radius:50%;
  border:3px solid transparent;
  background:linear-gradient(#fff,#fff) padding-box,
             linear-gradient(135deg,var(--or),#ffb347) border-box;
  overflow:hidden;position:relative;
  box-shadow:0 6px 22px rgba(255,112,0,.18);transition:box-shadow .3s;
}
.cat-item:hover .cat-ring{box-shadow:0 12px 36px rgba(255,112,0,.38);}
.cat-ring img{width:100%;height:100%;object-fit:cover;display:block;}
.cat-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(255,112,0,.82),rgba(255,112,0,.1));
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .3s;
}
.cat-item:hover .cat-overlay{opacity:1;}
.cat-overlay i{color:#fff;font-size:1.6rem;}
.cat-lbl{
  font-weight:700;font-size:.85rem;text-align:center;color:var(--txt);
  letter-spacing:.2px;
}
.cat-wa-hint{
  font-size:.7rem;color:var(--txt2);font-weight:500;
  display:flex;align-items:center;gap:4px;
}

.m-bg{
  position:fixed;inset:0;background:rgba(0,0,0,.55);
  z-index:9500;display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;padding:20px;
}
.m-bg.show{opacity:1;pointer-events:all;}
.m-box{
  background:#fff;border-radius:26px;padding:38px 34px;
  max-width:440px;width:100%;
  transform:translateY(28px);transition:transform .3s;
  box-shadow:0 24px 64px rgba(0,0,0,.18);
}
.m-bg.show .m-box{transform:translateY(0);}
.m-box h3{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--txt);}
.m-box p{color:var(--txt2);font-size:.88rem;margin-top:6px;margin-bottom:22px;font-weight:500;}
.m-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:var(--or3);color:var(--or);
  padding:8px 18px;border-radius:50px;
  font-weight:700;font-size:.9rem;margin-bottom:24px;
}
.m-btns{display:flex;gap:12px;flex-wrap:wrap;}
.btn-wa{
  flex:1;min-width:130px;background:#25d366;color:#fff;
  border:none;padding:14px 18px;border-radius:14px;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:.88rem;
  cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
  transition:.2s;
}
.btn-wa:hover{background:#1db954;transform:translateY(-2px);}
.btn-em{
  flex:1;min-width:130px;background:var(--or);color:#fff;
  border:none;padding:14px 18px;border-radius:14px;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:.88rem;
  cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
  transition:.2s;
}
.btn-em:hover{background:var(--or2);transform:translateY(-2px);}
.btn-cancel{
  width:100%;margin-top:10px;background:none;
  border:1.5px solid var(--brd);border-radius:14px;padding:10px;
  font-family:'Poppins',sans-serif;font-weight:600;color:var(--txt2);
  cursor:pointer;transition:.2s;
}
.btn-cancel:hover{border-color:var(--or);color:var(--or);}

.offers-wrap{
  background:linear-gradient(90deg,var(--or2) 0%,var(--or) 50%,#ff9500 100%);
  overflow:hidden;
}
.off-track-outer{overflow:hidden;}
.off-track{
  display:flex;width:max-content;
  animation:scrollOff 24s linear infinite;
}
.off-track:hover{animation-play-state:paused;}
@keyframes scrollOff{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.off-slide{
  min-width:300px;padding:26px 32px;
  display:flex;align-items:center;gap:16px;
  border-right:1px solid rgba(255,255,255,.18);
}
.off-icon{
  width:54px;height:54px;background:rgba(255,255,255,.2);
  border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.off-icon i{color:#fff;font-size:1.4rem;}
.off-txt h4{color:#fff;font-size:1.02rem;font-weight:700;line-height:1.1;}
.off-txt p{color:rgba(255,255,255,.8);font-size:.76rem;font-weight:500;margin-top:3px;}
.off-pill{
  display:inline-block;margin-top:6px;
  background:rgba(255,255,255,.25);border:1px solid rgba(255,255,255,.4);
  color:#fff;font-size:.68rem;font-weight:800;letter-spacing:.8px;
  padding:3px 10px;border-radius:50px;
}

.featured-section {
  padding: 80px 0;
  background-color: #fcfcfc;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.featured-content {
  flex: 1;
}

.featured-content .sec-tag {
  color: #ff7000;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #222;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.featured-heading span {
  color: #ff7000;
}

.featured-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.featured-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.featured-points li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.featured-points li i {
  color: #ff7000;
  font-size: 1.1rem;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ff7000;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(255, 112, 0, 0.2);
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background-color: #e06200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 112, 0, 0.3);
}

.featured-video-box {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #000;
  height: 400px; 
  position: relative;
}

.featured-video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  pointer-events: none; 
}

@media (max-width: 991px) {
  .featured-container {
    flex-direction: column;
    gap: 40px;
  }
  .featured-heading {
    font-size: 2.3rem;
  }
  .featured-video-box {
    width: 100%;
    height: 350px; 
  }
}


.reviews{padding:68px 36px;background:var(--bg);}
.rev-inner{max-width:1400px;margin:0 auto;}
.rev-head{text-align:center;margin-bottom:46px;}
.rev-outer{overflow:hidden;}
.rev-track{
  display:flex;gap:22px;width:max-content;
  animation:scrollRev 32s linear infinite;
}
.rev-track:hover{animation-play-state:paused;}
@keyframes scrollRev{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.rev-card{
  min-width:295px;max-width:295px;
  background:#fff;border-radius:20px;padding:24px;
  box-shadow:0 3px 18px rgba(0,0,0,.07);
  border:1px solid var(--brd);flex-shrink:0;
}
.rev-top{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.rev-img{
  width:52px;height:52px;border-radius:50%;object-fit:cover;
  border:2.5px solid var(--or);flex-shrink:0;
}
.rev-name{font-size:.9rem;font-weight:700;color:var(--txt);}
.rev-loc{font-size:.73rem;color:var(--txt2);display:flex;align-items:center;gap:4px;margin-top:2px;}
.rev-loc i{color:var(--or);font-size:.65rem;}
.stars{color:#f4a800;font-size:.88rem;letter-spacing:1px;margin-bottom:10px;}
.rev-text{color:var(--txt2);font-size:.86rem;line-height:1.65;font-weight:500;}
.rev-date{margin-top:10px;font-size:.71rem;color:#bbb;font-weight:600;display:flex;align-items:center;gap:5px;}
.rev-badge{
  display:inline-flex;align-items:center;gap:4px;
  background:#e8f5e9;color:#2e7d32;
  font-size:.67rem;font-weight:700;padding:2px 9px;border-radius:50px;margin-top:8px;
}

.about{padding:76px 36px;background:#fff;}
.about-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr 400px;gap:64px;align-items:center;
}
.about-yr{
  font-family:'Playfair Display',serif;font-size:6rem;font-weight:900;
  color:transparent;-webkit-text-stroke:2.5px var(--or);
  line-height:1;margin-bottom:-16px;opacity:.35;
  user-select:none;
}
.about-body p{
  color:var(--txt2);line-height:1.82;font-size:.93rem;font-weight:500;margin-bottom:16px;
}
.about-body strong{color:var(--txt);font-weight:700;}
.stats-row{display:flex;gap:28px;margin:26px 0;flex-wrap:wrap;}
.stat{text-align:center;}
.stat h3{
  font-family:'Playfair Display',serif;font-size:2.1rem;
  font-weight:900;color:var(--or);
}
.stat p{font-size:.72rem;font-weight:700;color:var(--txt2);text-transform:uppercase;letter-spacing:.8px;margin-top:2px;}
.owners-lbl{
  font-weight:700;font-size:.85rem;color:var(--txt);
  display:flex;align-items:center;gap:10px;margin-bottom:14px;
}
.owners-lbl::after{content:'';flex:1;height:1px;background:var(--brd);}
.owners-row{display:flex;gap:14px;flex-wrap:wrap;}
.owner-c{
  display:flex;align-items:center;gap:12px;
  background:var(--bg);border-radius:14px;
  padding:12px 16px;border:1px solid var(--brd);
}
.owner-c img{width:150px;height:150px;border-radius:50%;object-fit:cover;border:2px solid var(--or);}
.owner-c h5{font-size:.88rem;font-weight:700;color:var(--txt);}
.owner-c span{font-size:.73rem;color:var(--txt2);font-weight:500;}
.about-img-col{position:relative;}
.ab-img{
  width:100%;height:460px;object-fit:cover;
  border-radius:24px;box-shadow:0 18px 52px rgba(255,112,0,.2);
  display:block;
}
.ab-badge{
  position:absolute;bottom:22px;left:-24px;
  background:#fff;border-radius:16px;padding:15px 20px;
  box-shadow:0 8px 32px rgba(0,0,0,.13);
  border-left:4px solid var(--or);
}
.ab-badge strong{
  display:block;font-family:'Playfair Display',serif;
  font-size:1.45rem;color:var(--or);
}
.ab-badge span{font-size:.76rem;font-weight:600;color:var(--txt2);}

footer{
  background:linear-gradient(160deg,#180800 0%,#2a0e00 100%);
  color:#fff;padding:58px 36px 0;
}
.ft-grid{
  max-width:1300px;margin:0 auto;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;
  gap:40px;padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.ft-logo .logo-words h1{color:var(--or);}
.ft-logo .logo-words small{color:rgba(255,255,255,.45);}
.ft-about-p{color:rgba(255,255,255,.55);font-size:.86rem;line-height:1.72;margin-top:16px;}
.ft-h{
  font-weight:700;font-size:.73rem;letter-spacing:1.8px;
  text-transform:uppercase;color:var(--or);margin-bottom:16px;
}
.ft-ul{list-style:none;}
.ft-ul li{margin-bottom:9px;}
.ft-ul a{
  color:rgba(255,255,255,.6);text-decoration:none;
  font-size:.87rem;font-weight:500;
  display:flex;align-items:center;gap:8px;transition:color .2s;
}
.ft-ul a:hover{color:var(--or);}
.ft-ul a i{color:var(--or);font-size:.72rem;}
.ft-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:15px;}
.ft-row i{color:var(--or);font-size:1rem;margin-top:2px;flex-shrink:0;}
.ft-row-txt{color:rgba(255,255,255,.65);font-size:.86rem;line-height:1.55;font-weight:500;}
.ft-row-txt strong{color:#fff;font-size:.8rem;display:block;margin-bottom:2px;}
.social-lbl{margin-top:22px;}
.soc-row{display:flex;gap:9px;flex-wrap:wrap;margin-top:10px;}
.soc-btn{
  display:flex;align-items:center;gap:7px;
  padding:8px 14px;border-radius:10px;
  text-decoration:none;font-weight:700;font-size:.79rem;
  transition:.2s;border:1px solid rgba(255,255,255,.12);
}
.soc-btn:hover{transform:translateY(-2px);opacity:.88;}
.soc-btn.ggl{background:#fff;color:#333;}
.soc-btn.fb{background:#1877f2;color:#fff;}
.soc-btn.ig{background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);color:#fff;}
.soc-btn img{width:16px;height:16px;object-fit:contain;}
.soc-btn i{font-size:.95rem;}
.map-box{border-radius:14px;overflow:hidden;border:2px solid rgba(255,112,0,.25);margin-top:10px;}
.map-box iframe{display:block;}
.dir-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--or);text-decoration:none;
  font-weight:700;font-size:.82rem;margin-top:9px;
}
.ft-bottom{
  max-width:1300px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:10px;padding:17px 0;
  font-size:.78rem;color:rgba(255,255,255,.38);font-weight:500;
}
.ft-bottom a{color:var(--or);text-decoration:none;}
.ft-bottom strong{color:rgba(255,255,255,.65);}

.m-bar{
  display:none;position:fixed;bottom:0;left:0;right:0;
  background:var(--or);z-index:899;
  display:none;
  flex-direction:row;
}
.m-bar a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:7px;
  color:#fff;text-decoration:none;font-weight:700;font-size:.83rem;
  padding:13px 10px;
}
.m-bar a:first-child{border-right:1px solid rgba(255,255,255,.25);}
.m-bar a.wa{background:#1dbc59;}

@media(max-width:1024px){
  .about-inner{grid-template-columns:1fr 340px;gap:40px;}
  .ft-grid{grid-template-columns:1fr 1fr;gap:28px;}
}
@media(max-width:860px){
  .hdr-inner{padding:0 18px;}
  .dnav{display:none;}
  .ham{display:flex;}
  .search-bar{padding:10px 18px;}
  .cats{padding:40px 18px 32px;}
  .offers-wrap{}
  .reviews{padding:50px 18px;}
  .about{padding:56px 18px;}
  .about-inner{grid-template-columns:1fr;gap:28px;}
  .about-yr{font-size:4rem;}
  .about-img-col{order:-1;}
  .ab-img{height:260px;}
  .ab-badge{left:14px;bottom:14px;}
  footer{padding:40px 18px 0;}
  .ft-grid{grid-template-columns:1fr;}
  .ft-bottom{flex-direction:column;text-align:center;}
  .m-bar{display:flex;}
  body{padding-bottom:50px;}
  .sec-h{font-size:1.75rem;}
}
@media(max-width:580px){
  .topbar{font-size:.71rem;gap:14px;}
  .cat-row{gap:20px;}
  .cat-item{width:96px;}
  .cat-ring{width:90px;height:90px;}
  .off-slide{min-width:250px;padding:20px 22px;}
  .rev-card{min-width:265px;max-width:265px;}
  .stats-row{gap:18px;}
  .stat h3{font-size:1.7rem;}
}



.product-modal {
  display: none; 
  position: fixed; 
  z-index: 99999; 
  left: 0; top: 0; width: 100%; height: 100%; 
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.modal-content {
  background-color: #ffffff;
  margin: 5% auto; padding: 25px;
  width: 90%; max-width: 1200px;
  border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-height: 85vh; overflow-y: auto;
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; margin-bottom: 20px;
}
.modal-header span { color: #25d366; }
.close-btn { font-size: 35px; font-weight: bold; cursor: pointer; color: #aaa; }
.close-btn:hover { color: #ff0000; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.product-card {
  border: 1px solid #eef0f2; border-radius: 12px; overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.product-card img { width: 100%; height: 180px; object-fit: cover; }
.product-info { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.product-info h3 { margin: 0 0 8px 0; font-size: 1.05rem; color: #333; }
.product-info p { font-size: 0.85rem; color: #666; margin-bottom: 15px; flex-grow: 1; line-height: 1.4; }
.action-buttons { display: flex; gap: 10px; }
.action-buttons a {
  flex: 1; text-align: center; padding: 10px 5px; border-radius: 8px;
  text-decoration: none; font-size: 0.82rem; font-weight: bold;
  display: inline-flex; align-items: center; justify-content: center; gap: 5px; color: #fff;
}
.btn-wa { background-color: #25d366; }
.btn-mail { background-color: #007bfc; }