:root{
  --ath-gold:#c59b52;
  --ath-gold-dark:#8a652b;
  --ath-dark:#24170f;
  --ath-cream:#fffaf1;
  --ath-soft:#f6efe4;
  --ath-border:#eadfc8;
  --ath-shadow:0 14px 38px rgba(43,27,16,.11);
}

html,body{
  overflow-x:hidden;
  font-family:Arial,Tahoma,"Segoe UI",sans-serif!important;
}

.hero-shell{
  position:relative;
  background:#1d140e;
}

.hero-slider{
  position:relative;
  height:clamp(480px,68vh,620px);
  overflow:hidden;
  touch-action:pan-y;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .55s ease;
}

.hero-slide.is-active{
  opacity:1;
  visibility:visible;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(23,18,14,.18),
    rgba(23,18,14,.64)
  );
}

.hero-center-ribbon{
  position:absolute;
  z-index:3;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:min(92%,820px);
  padding:1.5rem 1.25rem;
  border:1px solid rgba(232,213,169,.4);
  border-radius:22px;
  background:rgba(28,18,11,.42);
  backdrop-filter:blur(6px);
  text-align:center;
}

.hero-center-ribbon h1{
  margin:.45rem 0;
  color:#fff;
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.2;
}

.hero-center-ribbon p{
  max-width:680px;
  margin:.45rem auto 1.2rem;
  color:rgba(255,255,255,.94);
  line-height:1.8;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
}

.hero-arrow{
  position:absolute;
  top:50%;
  z-index:6;
  transform:translateY(-50%);
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:50%;
  background:rgba(20,14,10,.5);
  color:#fff;
  font-size:1.55rem;
}

.hero-arrow-left{left:14px!important;right:auto!important}
.hero-arrow-right{right:14px!important;left:auto!important}

.hero-dots{
  position:absolute;
  z-index:7;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  gap:7px;
}

.hero-dot{
  width:10px;
  height:10px;
  padding:0;
  border-radius:50%;
  background:rgba(255,255,255,.48);
}

.hero-dot.is-active{
  width:28px;
  border-radius:8px;
  background:#fff;
}

.hero-shortcuts-wrap{
  position:relative;
  z-index:8;
  margin-top:-32px;
}

.hero-shortcuts{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.75rem;
}

.shortcut-card{
  min-height:104px;
  padding:1rem;
  border:1px solid var(--ath-border);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--ath-shadow);
  text-align:center;
}

.works-home-section{
  padding:2.7rem 0;
  background:#fffdf9;
}

.works-filters{
  display:flex;
  gap:.5rem;
  overflow-x:auto;
  flex-wrap:nowrap;
  padding:.2rem 0 .8rem;
  scrollbar-width:thin;
}

.works-filter{
  flex:0 0 auto;
  padding:.6rem .95rem;
  border:1px solid var(--ath-border);
  border-radius:999px;
  background:#fff;
}

.works-rail{
  display:flex;
  gap:.85rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:.3rem 0 .8rem;
}

.work-card{
  flex:0 0 min(310px,82vw);
  overflow:hidden;
  border:1px solid var(--ath-border);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--ath-shadow);
  scroll-snap-align:start;
}

.work-thumb{
  height:230px;
  background:#f4eee4;
}

.work-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.footer-subscribe-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  gap:1rem;
  align-items:center;
  max-width:980px;
  margin:0 auto 1.5rem;
  padding:.9rem 1rem;
  border:1px solid var(--ath-border);
  border-radius:16px;
  background:#fff;
}

.footer-subscribe-copy h3{
  margin:.15rem 0;
  font-size:1rem;
}

.footer-subscribe-copy p{
  margin:.2rem 0;
  font-size:.8rem;
  line-height:1.5;
}

.footer-subscribe-form{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:.45rem;
  align-items:center;
}

.footer-subscribe-form .form-control,
.footer-subscribe-form .btn{
  min-height:40px;
}

.ath-page-hero-compact{
  padding:3rem 0 2.2rem;
}

.ath-services-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  margin-bottom:1.2rem;
  flex-wrap:wrap;
}

.ath-services-toolbar strong{
  font-size:1.2rem;
}

.ath-services-toolbar span{
  display:inline-grid;
  place-items:center;
  min-width:28px;
  height:28px;
  margin-inline-start:.4rem;
  border-radius:50%;
  background:var(--ath-soft);
}

.ath-cart-count{
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  background:#fff;
  color:var(--ath-gold-dark);
}

.ath-service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.ath-service-card{
  display:flex;
  flex-direction:column;
  padding:1.15rem;
  border:1px solid var(--ath-border);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--ath-shadow);
}

.ath-service-card p{
  flex:1;
  color:#715b4b;
}

.ath-service-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  margin-top:1rem;
  flex-wrap:wrap;
}

.ath-service-price{
  color:var(--ath-gold-dark);
}

.ath-cart-page{
  min-height:45vh;
}

.ath-cart-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  margin-bottom:.8rem;
  padding:1rem 1.1rem;
  border:1px solid var(--ath-border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--ath-shadow);
}

.ath-cart-actions{
  display:flex;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
  margin-top:1.5rem;
}

.ath-v4-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:52px;
  background:rgba(0,0,0,.94);
}

.ath-v4-lightbox.is-open{
  display:flex;
}

.ath-v4-lightbox img{
  max-width:92vw;
  max-height:84vh;
  object-fit:contain;
  border-radius:10px;
}

.ath-v4-close,
.ath-v4-prev,
.ath-v4-next{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.14);
  color:#fff;
}

.ath-v4-close{
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:1.8rem;
}

.ath-v4-prev,
.ath-v4-next{
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:62px;
  border-radius:12px;
  font-size:2rem;
}

.ath-v4-prev{left:10px}
.ath-v4-next{right:10px}

@media(max-width:900px){
  .hero-shortcuts{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ath-service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-subscribe-card,
  .footer-subscribe-form{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .hero-slider{
    height:500px;
  }

  .hero-center-ribbon{
    width:calc(100% - 30px);
    padding:1rem .85rem;
  }

  .hero-center-ribbon h1{
    font-size:1.9rem;
  }

  .hero-center-ribbon p{
    font-size:.95rem;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-arrow{
    width:42px;
    height:42px;
  }

  .hero-arrow-left{left:6px!important}
  .hero-arrow-right{right:6px!important}

  .hero-shortcuts-wrap{
    margin-top:-22px;
  }

  .shortcut-card{
    min-height:96px;
    padding:.8rem .55rem;
  }

  .work-card{
    flex-basis:84vw;
  }

  .work-thumb{
    height:215px;
  }

  .footer-subscribe-card{
    width:100%;
    padding:.75rem;
  }

  .footer-subscribe-copy{
    text-align:center;
  }

  .footer-subscribe-form{
    gap:.4rem;
  }

  .ath-service-grid{
    grid-template-columns:1fr;
  }

  .ath-cart-row{
    align-items:flex-start;
  }

  .ath-cart-actions,
  .ath-cart-actions .btn,
  .ath-cart-actions form,
  .ath-cart-actions form .btn{
    width:100%;
  }

  .ath-v4-lightbox{
    padding:48px 8px;
  }
}

/* ALTAHANY_VISITOR_JOURNEY_V4_3 */
.container{width:min(1180px,calc(100% - 32px));margin-inline:auto}
.ath-gallery-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important;width:100%!important;align-items:start!important;padding:8px 0 40px!important}
.ath-gallery-card{display:flex!important;flex-direction:column!important;min-width:0!important;overflow:hidden!important;border:1px solid var(--ath-border,#eadfc8)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 12px 32px rgba(43,27,16,.09)!important}
.ath-gallery-card img,.ath-gallery-card .media-thumb img{display:block!important;width:100%!important;height:270px!important;max-width:none!important;object-fit:cover!important;background:#f4eee4!important}
.ath-gallery-meta{display:flex!important;flex-direction:column!important;gap:10px!important;padding:14px!important}
.ath-gallery-actions{display:flex!important;gap:8px!important;flex-wrap:wrap!important;align-items:center!important}
.ath-gallery-actions form,.ath-gallery-actions .btn{margin:0!important}.ath-gallery-actions .btn{min-height:42px!important}
.ath-service-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:16px!important;width:100%!important}
.ath-service-card{min-width:0!important;height:100%!important}.ath-service-card-footer form,.ath-service-card-footer button{min-width:140px!important}
.hero-slider{min-height:520px!important;background:#24170f!important}.hero-slide img{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important}.hero-slide.is-active{display:block!important;opacity:1!important;visibility:visible!important}
.footer-subscribe-card{max-width:920px!important;padding:14px 16px!important;margin-bottom:20px!important}
@media(max-width:900px){.ath-gallery-grid,.ath-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:640px){.container{width:min(100% - 20px,1180px)!important}.ath-gallery-grid,.ath-service-grid{grid-template-columns:1fr!important;gap:12px!important}.ath-gallery-card img,.ath-gallery-card .media-thumb img{height:240px!important}.ath-gallery-actions{display:grid!important;grid-template-columns:1fr 1fr!important}.ath-gallery-actions form,.ath-gallery-actions .btn,.ath-gallery-actions form .btn{width:100%!important}.hero-slider{min-height:500px!important}.footer-subscribe-card,.footer-subscribe-form{grid-template-columns:1fr!important}.footer-subscribe-form .btn,.footer-subscribe-form .form-control{width:100%!important}}

/* ALTAHANY_CART_QUOTE_NOTICE_V4_4_2 */
.ath-cart-quote-notice{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin:0 0 14px;
  padding:12px 14px;
  border:1px solid #e4cf9e;
  border-radius:14px;
  background:#fffaf0;
  color:#5e431d;
}
.ath-cart-quote-notice strong{font-size:15px}
.ath-cart-quote-notice span{font-size:13px;line-height:1.6}
@media(max-width:640px){
  .ath-cart-quote-notice{padding:11px 12px}
}
/* ALTAHANY_VISITOR_EXPERIENCE_V4_6 */
.ath-quick-strip{position:relative;z-index:8;margin-top:-28px}.ath-quick-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.ath-quick-card{display:flex;align-items:center;justify-content:center;gap:10px;min-height:82px;padding:14px;border:1px solid var(--ath-border);border-radius:18px;background:#fff;box-shadow:var(--ath-shadow)}
.ath-home-group-rail{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;padding:6px 2px 16px}.ath-home-group-card{flex:0 0 min(310px,82vw);scroll-snap-align:start;overflow:hidden;border:1px solid var(--ath-border);border-radius:20px;background:#fff;box-shadow:var(--ath-shadow)}.ath-home-group-card img{width:100%;height:230px;object-fit:cover}.ath-home-group-copy{padding:14px}.ath-code{display:inline-flex;padding:3px 8px;border-radius:999px;background:#f7ecd5;color:#79561f;font-size:11px;font-weight:800}.ath-home-service-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}
.ath-gallery-group-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.ath-gallery-group-frame{overflow:hidden;border:1px solid var(--ath-border);border-radius:20px;background:#fff;box-shadow:var(--ath-shadow)}.ath-gallery-group-image{position:relative;display:block;height:285px}.ath-gallery-group-image img{width:100%;height:100%;object-fit:cover}.ath-gallery-count{position:absolute;inset-inline-end:12px;bottom:12px;padding:6px 10px;border-radius:999px;background:rgba(31,21,14,.78);color:#fff}.ath-gallery-group-body{padding:15px}.ath-gallery-group-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.ath-gallery-parent-frame{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(250px,.7fr);overflow:hidden;border:1px solid var(--ath-border);border-radius:22px;background:#fff;box-shadow:var(--ath-shadow)}.ath-gallery-parent-frame>img{width:100%;height:520px;object-fit:cover}.ath-gallery-parent-info{padding:22px}.ath-gallery-child-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:16px}.ath-gallery-child-card{position:relative;overflow:hidden;padding:0;border:1px solid var(--ath-border);border-radius:15px}.ath-gallery-child-card img{width:100%;height:190px;object-fit:cover}.ath-gallery-child-card span{position:absolute;inset-inline-start:8px;bottom:8px;padding:3px 7px;border-radius:999px;background:rgba(0,0,0,.65);color:#fff;font-size:10px}
.ath-cart-fab{position:fixed;z-index:9990;bottom:20px;inset-inline-end:20px;display:grid;place-items:center;width:58px;height:58px;border:0;border-radius:50%;background:#b68b42;color:#fff;box-shadow:0 16px 38px rgba(34,24,16,.28)}.ath-cart-fab svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.8}.ath-cart-fab span{position:absolute;top:-4px;inset-inline-end:-4px;display:grid;place-items:center;min-width:23px;height:23px;border:2px solid #fff;border-radius:999px;background:#2f241b;color:#fff;font-size:11px}.ath-cart-backdrop{position:fixed;inset:0;z-index:9991;display:none;background:rgba(20,14,10,.42)}.ath-cart-backdrop.is-open{display:block}.ath-cart-drawer{position:fixed;z-index:9992;top:0;bottom:0;inset-inline-end:0;width:min(390px,92vw);display:flex;flex-direction:column;background:#fff;transform:translateX(110%);transition:.25s}.ath-cart-drawer.is-open{transform:translateX(0)}html[dir=rtl] .ath-cart-drawer{transform:translateX(-110%)}html[dir=rtl] .ath-cart-drawer.is-open{transform:translateX(0)}.ath-cart-drawer-head{display:flex;justify-content:space-between;padding:17px;border-bottom:1px solid var(--ath-border)}.ath-cart-drawer-body{flex:1;overflow:auto;padding:14px}.ath-cart-mini-item{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid #eee}.ath-cart-drawer-foot{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:14px;border-top:1px solid var(--ath-border)}.site-footer{padding-top:20px!important}.footer-subscribe-card{margin-bottom:10px!important;padding:8px 10px!important}.footer-grid{gap:16px!important;padding:14px 0!important}
@media(max-width:900px){.ath-home-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ath-gallery-group-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ath-gallery-child-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:640px){.ath-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ath-home-service-grid,.ath-gallery-group-grid{grid-template-columns:1fr!important}.ath-gallery-parent-frame{grid-template-columns:1fr}.ath-gallery-parent-frame>img{height:330px}.ath-gallery-child-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ath-gallery-child-card img{height:150px}.ath-gallery-group-actions .btn,.ath-gallery-group-actions form{width:100%}.footer-grid{grid-template-columns:1fr 1fr!important}}

/* ALTAHANY_BLOG_V5_1_1 */
.ath-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ath-blog-card{background:#fff;border:1px solid rgba(180,145,70,.2);border-radius:18px;overflow:hidden;box-shadow:0 8px 24px rgba(70,50,20,.06)}
.ath-blog-image{display:block;aspect-ratio:16/10;overflow:hidden;background:#f5f0e8}
.ath-blog-image img{width:100%;height:100%;object-fit:cover;display:block}
.ath-blog-body{padding:18px}
.ath-blog-body h2,.ath-blog-body h3{margin:.4rem 0 .7rem}
.ath-blog-body a{text-decoration:none}
.ath-blog-article{max-width:980px}
.ath-blog-article-head{text-align:center;max-width:820px;margin:1rem auto 1.5rem}
.ath-blog-cover{display:block;width:100%;max-height:520px;object-fit:cover;border-radius:20px;margin:0 auto 1.5rem}
.ath-blog-content{font-size:1.08rem;line-height:2;white-space:normal}
.ath-blog-cta{margin-top:2rem;padding:24px;border-radius:18px;background:#fbf7ef;border:1px solid rgba(180,145,70,.22);text-align:center}
@media(max-width:900px){.ath-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.ath-blog-grid{grid-template-columns:1fr}.ath-blog-body{padding:15px}.ath-blog-content{font-size:1rem}}

/* ALTAHANY_SERVICE_DETAIL_V5_2_7_1 */
.ath-service-detail{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:28px;align-items:center;margin-top:18px}
.ath-service-detail h1{font-size:clamp(2rem,5vw,3.6rem);margin:.5rem 0 1rem}
.ath-service-detail-text{font-size:1.08rem;line-height:2;white-space:pre-line}
.ath-service-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:1.4rem}
.ath-service-detail-cover{width:100%;max-height:520px;object-fit:cover;border-radius:22px;box-shadow:0 16px 40px rgba(50,35,12,.12)}
@media(max-width:820px){.ath-service-detail{grid-template-columns:1fr}.ath-service-detail-actions .btn,.ath-service-detail-actions form{width:100%}.ath-service-detail-actions form .btn{width:100%}}

/* ALTAHANY_SERVICE_GALLERY_ARTICLE_V5_3_2 */
.ath-service-head{margin:22px 0 26px}
.ath-service-head h1{font-size:clamp(2rem,5vw,3.7rem);margin:.5rem 0 1rem}
.ath-service-actions{display:flex;gap:10px;flex-wrap:wrap}
.ath-service-slider{position:relative;border-radius:22px;overflow:hidden;background:#f7f1e8;box-shadow:0 14px 36px rgba(70,48,18,.09)}
.ath-service-track{position:relative;min-height:420px}
.ath-service-slide{display:none;width:100%;padding:0;border:0;background:transparent;cursor:zoom-in}
.ath-service-slide.is-active{display:block}
.ath-service-slide img{display:block;width:100%;height:clamp(320px,52vw,620px);object-fit:cover}
.ath-service-slide-code{position:absolute;inset-inline-start:16px;bottom:16px;background:rgba(255,255,255,.92);padding:7px 12px;border-radius:999px;font-weight:700}
.ath-service-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:46px;height:46px;border:0;border-radius:50%;background:rgba(255,255,255,.92);font-size:2rem;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,.12)}
.ath-service-prev{inset-inline-start:14px}
.ath-service-next{inset-inline-end:14px}
.ath-service-dots{display:flex;justify-content:center;gap:8px;margin:14px 0 22px;flex-wrap:wrap}
.ath-service-dots button{width:9px;height:9px;border:0;border-radius:50%;background:#d7c7a5;padding:0}
.ath-service-dots button.is-active{width:28px;border-radius:999px;background:#a7833f}
.ath-service-frame-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.ath-service-frame{padding:0;border:1px solid rgba(178,143,70,.2);border-radius:18px;overflow:hidden;background:#fff;text-align:inherit;cursor:zoom-in;box-shadow:0 8px 22px rgba(55,38,12,.06)}
.ath-service-frame img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}
.ath-service-frame-meta{padding:12px;display:flex;flex-direction:column;gap:4px}
.ath-service-frame-meta span{font-size:.8rem;color:#9a7737}
.ath-service-frame-meta strong{font-size:1rem}
.ath-service-article{margin-top:34px;padding:26px;border:1px solid rgba(178,143,70,.2);border-radius:20px;background:#fffdf9}
.ath-service-article h2{margin:.5rem 0 1rem}
.ath-service-article p{font-size:1.08rem;line-height:2;white-space:pre-line}
.ath-service-article-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.ath-service-empty-gallery{padding:24px;border-radius:18px;background:#fbf7ef;border:1px dashed rgba(178,143,70,.35);text-align:center}
@media(max-width:820px){
  .ath-service-actions .btn,.ath-service-actions form{width:100%}
  .ath-service-actions form .btn{width:100%}
  .ath-service-slide img{height:360px}
  .ath-service-frame-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:520px){
  .ath-service-slide img{height:300px}
  .ath-service-frame-grid{grid-template-columns:1fr}
}

/* ALTAHANY_ONE_PAGE_UX_V5_4 */
:root{
  --ath-gold:#a7833f;
  --ath-gold-dark:#7e5e24;
  --ath-cream:#fbf8f2;
  --ath-ink:#241f18;
  --ath-border:rgba(167,131,63,.24);
}
html{scroll-behavior:smooth}
body{font-family:Arial,Tahoma,sans-serif;color:var(--ath-ink)}
.container{width:min(1180px,calc(100% - 28px));margin-inline:auto}
.ath-section{padding:clamp(42px,7vw,88px) 0}
.btn{min-height:50px;padding:13px 21px;border-radius:14px;font-size:1.02rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.btn-primary{background:linear-gradient(135deg,var(--ath-gold),var(--ath-gold-dark));color:#fff;border:0}
.btn-outline{border:1px solid var(--ath-gold);color:var(--ath-gold-dark);background:#fff}
.btn-ghost{background:var(--ath-cream);color:var(--ath-ink);border:1px solid var(--ath-border)}
.ath-service-card,.service-card{border-radius:20px!important;border:1px solid var(--ath-border)!important;box-shadow:0 12px 32px rgba(74,54,22,.08)!important;padding:20px!important}
.ath-service-card h2,.ath-service-card h3,.service-card h2,.service-card h3{font-size:clamp(1.25rem,2vw,1.7rem)!important}
.ath-service-card img,.service-card img{border-radius:16px!important;min-height:220px;object-fit:cover}
.ath-header-cart{position:relative;display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:#fff;border:1px solid var(--ath-border);box-shadow:0 8px 20px rgba(65,45,16,.1);text-decoration:none;transition:.2s ease}
.ath-header-cart.is-empty{opacity:.78}
.ath-header-cart.is-active{background:linear-gradient(135deg,var(--ath-gold),var(--ath-gold-dark));transform:scale(1.04)}
.ath-header-cart-icon{font-size:1.35rem}
.ath-header-cart-badge{position:absolute;top:-5px;inset-inline-end:-5px;min-width:22px;height:22px;padding:0 5px;border-radius:999px;background:#c62828;color:#fff;font-size:.75rem;font-weight:800;display:flex;align-items:center;justify-content:center}
.ath-header-cart.is-empty .ath-header-cart-badge{display:none}
.ath-admin-unclassified{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px;margin-bottom:18px;border-radius:18px;border:1px solid rgba(198,40,40,.25);background:#fff8f8;color:#4d2525}
.ath-admin-unclassified>div:first-child{display:grid;grid-template-columns:auto 1fr;column-gap:12px;align-items:center}
.ath-admin-unclassified strong{font-size:1.35rem}
.ath-admin-unclassified p{grid-column:2;margin:.25rem 0 0;color:#795555}
.ath-admin-unclassified-icon{font-size:1.8rem}
.ath-admin-unclassified-count{min-width:58px;height:58px;border-radius:16px;background:#c62828;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.35rem;font-weight:800}
@media(max-width:760px){
  .container{width:min(100% - 18px,1180px)}
  .ath-section{padding:36px 0}
  .btn{width:100%;min-height:52px;font-size:1.05rem}
  .ath-header-cart{width:46px;height:46px}
  .ath-admin-unclassified{align-items:flex-start}
  .ath-service-card,.service-card{padding:16px!important}
}

/* ALTAHANY_GLOBAL_UX_V5_4_2_1 */
[dir="rtl"] .ath-service-prev,
html[dir="rtl"] .ath-service-prev{inset-inline-start:auto;inset-inline-end:14px}
[dir="rtl"] .ath-service-next,
html[dir="rtl"] .ath-service-next{inset-inline-end:auto;inset-inline-start:14px}
[dir="ltr"] .ath-service-prev,
html[dir="ltr"] .ath-service-prev{left:14px;right:auto}
[dir="ltr"] .ath-service-next,
html[dir="ltr"] .ath-service-next{right:14px;left:auto}
.ath-service-arrow{display:flex;align-items:center;justify-content:center;font-family:Arial,sans-serif;z-index:5!important}
.ath-service-slider{isolation:isolate}
.ath-service-slider::after,
.hero-slider::after,
.ath-hero-slider::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(0,0,0,.11));z-index:1}
.ath-service-slide,.hero-slide,.ath-hero-slide{position:relative;z-index:0}
.ath-image-cart-form{padding:0 12px 14px}
.ath-image-cart-button{width:100%;min-height:50px;border:0;border-radius:13px;background:linear-gradient(135deg,#b18b43,#7e5e24);color:#fff;font-size:1rem;font-weight:800;display:flex;align-items:center;justify-content:center;gap:8px;cursor:pointer}
footer form,.site-footer form,.ath-footer form{display:flex;align-items:center;gap:8px;flex-wrap:nowrap}
footer input,.site-footer input,.ath-footer input{min-height:42px!important}
footer,.site-footer,.ath-footer{padding-top:20px!important;padding-bottom:15px!important}
footer .footer-grid,.site-footer .footer-grid,.ath-footer .footer-grid{gap:12px!important}
footer p,.site-footer p,.ath-footer p{margin:.2rem 0!important;line-height:1.45!important}
footer .copyright,.site-footer .copyright,.ath-footer .copyright{margin-top:10px!important;padding-top:8px!important}
@media(max-width:760px){
  footer form,.site-footer form,.ath-footer form{display:grid;grid-template-columns:1fr;gap:8px}
  .ath-image-cart-button{min-height:52px;font-size:1.05rem}
}

/* ALTAHANY_PREMIUM_SLIDERS_V5_5_1_2 */
.hero-shell,.hero-slider,.ath-service-slider{position:relative;overflow:hidden}
.hero-slide img,.ath-service-slide img{filter:saturate(1.04) contrast(1.02)}
.hero-center-ribbon{max-width:760px!important;padding:22px 28px!important;border-radius:22px!important;background:rgba(25,19,13,.54)!important;backdrop-filter:blur(8px)}
.hero-arrow,.ath-service-arrow{width:50px!important;height:50px!important;border-radius:50%!important;background:rgba(255,255,255,.94)!important;color:#6f501b!important;box-shadow:0 10px 26px rgba(0,0,0,.18)!important;font-size:2rem!important}
html[dir="rtl"] .hero-arrow-left{left:auto!important;right:14px!important}
html[dir="rtl"] .hero-arrow-right{right:auto!important;left:14px!important}
html[dir="ltr"] .hero-arrow-left{left:14px!important;right:auto!important}
html[dir="ltr"] .hero-arrow-right{right:14px!important;left:auto!important}
.hero-dots{z-index:6!important}
.hero-dot{width:10px!important;height:10px!important;border-radius:50%!important}
.hero-dot.is-active{width:30px!important;border-radius:999px!important}
.ath-admin-lightbox{position:fixed;inset:0;z-index:99999;background:rgba(14,10,7,.92);display:none;align-items:center;justify-content:center;padding:24px}
.ath-admin-lightbox.is-open{display:flex}
.ath-admin-lightbox img{max-width:min(94vw,1400px);max-height:88vh;object-fit:contain;border-radius:16px;box-shadow:0 20px 70px rgba(0,0,0,.45)}
.ath-admin-lb-close,.ath-admin-lb-prev,.ath-admin-lb-next{position:absolute;border:0;border-radius:50%;background:#fff;color:#6f501b;width:48px;height:48px;font-size:2rem;cursor:pointer}
.ath-admin-lb-close{top:18px;right:18px}
.ath-admin-lb-prev{left:18px;top:50%;transform:translateY(-50%)}
.ath-admin-lb-next{right:18px;top:50%;transform:translateY(-50%)}
@media(max-width:760px){
  .hero-center-ribbon{padding:18px!important;border-radius:18px!important}
  .hero-arrow,.ath-service-arrow{width:42px!important;height:42px!important}
}


/* ALTAHANY_VISUAL_READINESS_V5_6_1_1 */
.ath-public-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(12,9,6,.94);
}
.ath-public-lightbox.is-open{display:flex}
.ath-public-lightbox img{
  max-width:min(94vw,1440px);
  max-height:88vh;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 24px 80px rgba(0,0,0,.5);
}
.ath-public-lb-close,
.ath-public-lb-prev,
.ath-public-lb-next{
  position:absolute;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#6f501b;
  font-size:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.ath-public-lb-close{top:16px;inset-inline-end:16px}
.ath-public-lb-prev{top:50%;left:16px;transform:translateY(-50%)}
.ath-public-lb-next{top:50%;right:16px;transform:translateY(-50%)}
header nav,.site-header nav,.ath-header nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.ath-header-cart{
  flex:0 0 auto;
  margin-inline-start:4px;
}


/* ALTAHANY_FINAL_PUBLIC_POLISH_V5_7 */
:root{
  --ath-v57-gold:#a7833f;
  --ath-v57-gold-dark:#6f501b;
  --ath-v57-cream:#fbf8f2;
  --ath-v57-paper:#fffdf8;
  --ath-v57-ink:#251f17;
  --ath-v57-muted:#756956;
  --ath-v57-border:rgba(167,131,63,.22);
  --ath-v57-shadow:0 14px 40px rgba(69,49,20,.10);
}

html{
  scroll-behavior:smooth;
  text-rendering:optimizeLegibility;
}

body{
  background:linear-gradient(180deg,#fff 0%,#fffdf9 58%,#fbf7ef 100%);
  color:var(--ath-v57-ink);
}

:is(header,.site-header,.ath-header){
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,253,248,.94);
  border-bottom:1px solid var(--ath-v57-border);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 6px 24px rgba(58,41,14,.06);
}

:is(header,.site-header,.ath-header) nav{
  min-height:72px;
  gap:10px;
}

:is(header,.site-header,.ath-header) a{
  text-underline-offset:4px;
}

:is(header,.site-header,.ath-header) nav > a:not(.ath-header-cart){
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:12px;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}

:is(header,.site-header,.ath-header) nav > a:not(.ath-header-cart):hover{
  background:var(--ath-v57-cream);
  color:var(--ath-v57-gold-dark);
  transform:translateY(-1px);
}

.ath-header-cart{
  width:48px!important;
  height:48px!important;
  border:1px solid var(--ath-v57-border)!important;
  background:#fff!important;
  box-shadow:0 9px 24px rgba(68,46,14,.10)!important;
}

.ath-header-cart.is-active{
  background:linear-gradient(135deg,var(--ath-v57-gold),var(--ath-v57-gold-dark))!important;
}

.hero-shell{
  margin:16px auto 0;
  width:min(1240px,calc(100% - 24px));
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(54,38,13,.16);
  border:1px solid rgba(255,255,255,.58);
}

.hero-slider{
  min-height:clamp(420px,68vh,760px);
}

.hero-slide img{
  width:100%;
  height:100%;
  min-height:clamp(420px,68vh,760px);
  object-fit:cover;
  object-position:center;
}

.hero-center-ribbon{
  max-width:min(760px,calc(100% - 32px))!important;
  padding:24px 30px!important;
  border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:0 20px 50px rgba(0,0,0,.22)!important;
}

.hero-center-ribbon h1,
.hero-center-ribbon h2{
  line-height:1.18!important;
  letter-spacing:-.02em;
}

.hero-center-ribbon p{
  max-width:680px;
  margin-inline:auto;
  line-height:1.75;
}

.hero-arrow,
.ath-service-arrow{
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}

.hero-arrow:hover,
.ath-service-arrow:hover{
  transform:scale(1.06);
  box-shadow:0 14px 34px rgba(0,0,0,.22)!important;
}

.ath-section{
  padding:clamp(44px,7vw,88px) 0;
}

.section-head{
  margin-bottom:24px;
}

.section-head h2{
  font-size:clamp(1.75rem,3vw,2.55rem);
  line-height:1.22;
  margin:.35rem 0;
}

.section-head p{
  color:var(--ath-v57-muted);
  line-height:1.75;
}

:is(.ath-service-card,.service-card,.ath-gallery-card,.gallery-card,.ath-service-frame){
  background:var(--ath-v57-paper);
  border:1px solid var(--ath-v57-border)!important;
  border-radius:22px!important;
  box-shadow:var(--ath-v57-shadow)!important;
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

:is(.ath-service-card,.service-card,.ath-gallery-card,.gallery-card,.ath-service-frame):hover{
  transform:translateY(-4px);
  border-color:rgba(167,131,63,.42)!important;
  box-shadow:0 20px 48px rgba(69,49,20,.14)!important;
}

:is(.ath-service-card,.service-card,.ath-gallery-card,.gallery-card,.ath-service-frame) img{
  width:100%;
  object-fit:cover;
}

:is(.btn,button,input[type="submit"],.ath-image-cart-button){
  border-radius:14px!important;
  font-weight:800;
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
}

:is(.btn,button,input[type="submit"],.ath-image-cart-button):hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
}

:is(input,select,textarea){
  border-radius:13px!important;
  border:1px solid rgba(167,131,63,.28)!important;
  background:#fff!important;
}

:is(input,select,textarea):focus{
  outline:none!important;
  border-color:var(--ath-v57-gold)!important;
  box-shadow:0 0 0 4px rgba(167,131,63,.13)!important;
}

.ath-service-article{
  background:var(--ath-v57-paper);
  border:1px solid var(--ath-v57-border);
  border-radius:22px;
  padding:clamp(22px,4vw,38px);
  box-shadow:var(--ath-v57-shadow);
}

.ath-service-article p{
  line-height:1.9;
  color:#544a3c;
}

:is(footer,.site-footer,.ath-footer){
  margin-top:38px;
  padding:18px 0 14px!important;
  background:#f8f3e9;
  border-top:1px solid var(--ath-v57-border);
}

:is(footer,.site-footer,.ath-footer) .footer-grid{
  align-items:center;
}

:is(footer,.site-footer,.ath-footer) form{
  max-width:760px;
  margin-inline:auto;
}

:is(footer,.site-footer,.ath-footer) .copyright{
  font-size:.9rem;
  color:#746955;
}

.ath-public-lightbox img{
  background:#111;
}

@media(max-width:900px){
  :is(header,.site-header,.ath-header) nav{
    min-height:64px;
    overflow-x:auto;
    scrollbar-width:none;
    white-space:nowrap;
  }

  :is(header,.site-header,.ath-header) nav::-webkit-scrollbar{
    display:none;
  }

  .hero-shell{
    width:calc(100% - 14px);
    margin-top:8px;
    border-radius:20px;
  }

  .hero-slider,
  .hero-slide img{
    min-height:500px;
  }

  .hero-center-ribbon{
    padding:20px!important;
  }
}

@media(max-width:640px){
  body{
    font-size:16px;
  }

  .container{
    width:min(100% - 18px,1180px)!important;
  }

  .hero-slider,
  .hero-slide img{
    min-height:460px;
  }

  .hero-center-ribbon h1,
  .hero-center-ribbon h2{
    font-size:clamp(1.8rem,8vw,2.5rem)!important;
  }

  .hero-center-ribbon p{
    font-size:1rem!important;
  }

  .hero-arrow{
    width:42px!important;
    height:42px!important;
  }

  .ath-section{
    padding:38px 0;
  }

  :is(.ath-service-card,.service-card,.ath-gallery-card,.gallery-card,.ath-service-frame){
    border-radius:18px!important;
  }

  :is(footer,.site-footer,.ath-footer) form{
    display:grid!important;
    grid-template-columns:1fr!important;
  }

  :is(footer,.site-footer,.ath-footer){
    padding:14px 0 12px!important;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}

/* ALTAHANY_PUBLIC_CATALOG_UX_V6_2 */
:root{
  --ath-text-strong:#241b14;
  --ath-text:#4b3d31;
  --ath-muted:#75685c;
  --ath-surface:#fffdf9;
  --ath-surface-soft:#f8f1e7;
  --ath-gold-strong:#9d6d1f;
  --ath-border-strong:#d8c39d;
}

body{
  color:var(--ath-text-strong)!important;
  background:#fffdf9!important;
}

main p,
main li,
main label,
main small{
  color:var(--ath-text)!important;
}

.btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-width:1px!important;
  font-weight:800!important;
  line-height:1.25;
}

.btn-primary{
  background:var(--ath-gold-strong)!important;
  border-color:var(--ath-gold-strong)!important;
  color:#fff!important;
}

.btn-outline{
  background:#fff!important;
  border-color:var(--ath-gold-strong)!important;
  color:#6d4913!important;
}

.btn-ghost{
  background:var(--ath-surface-soft)!important;
  border-color:var(--ath-border-strong)!important;
  color:var(--ath-text-strong)!important;
}

.btn-wa{
  background:#167c4c!important;
  border-color:#167c4c!important;
  color:#fff!important;
}

.ath-gallery-group-frame,
.ath-gallery-parent-frame,
.ath-gallery-child-card,
.ath-service-slider,
.ath-home-group-card{
  border:1px solid var(--ath-border-strong)!important;
  box-shadow:0 16px 38px rgba(48,32,18,.10)!important;
}

.ath-gallery-parent-frame{
  background:var(--ath-surface)!important;
}

.ath-gallery-child-card{
  background:#fff!important;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.ath-gallery-child-card:hover,
.ath-gallery-child-card:focus-visible{
  transform:translateY(-2px);
  border-color:var(--ath-gold-strong)!important;
  box-shadow:0 12px 28px rgba(48,32,18,.14)!important;
}

.ath-gallery-group-actions{
  align-items:stretch;
}

.ath-gallery-group-actions form{
  display:flex;
}

.ath-gallery-group-actions .btn,
.ath-gallery-group-actions form .btn{
  min-width:132px;
}

.footer-social{
  width:42px!important;
  height:42px!important;
  display:inline-grid!important;
  place-items:center!important;
  border-radius:50%!important;
  font-size:0!important;
}

.footer-social svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-social.facebook svg{
  fill:currentColor;
  stroke:none;
}

.footer-social.instagram{color:#b3267a!important}
.footer-social.tiktok{color:#111!important}
.footer-social.facebook{color:#1877f2!important}
.footer-social.whatsapp{color:#128c58!important}

.ath-page-hero h1,
.section-head h2,
.ath-gallery-group-body h2,
.ath-gallery-parent-info strong{
  color:var(--ath-text-strong)!important;
}

@media(max-width:640px){
  .ath-gallery-group-actions{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
  }

  .ath-gallery-group-actions form,
  .ath-gallery-group-actions .btn,
  .ath-gallery-group-actions form .btn{
    width:100%!important;
    min-width:0!important;
  }

  .ath-gallery-parent-info{
    padding:16px!important;
  }
}

/* ALTAHANY_PUBLIC_DESIGN_BROWSER_V6_8_1 */
.ath-service-design-browser,.ath-design-page{padding:34px 0}
.ath-design-filter-desktop,.ath-design-tags{display:flex;gap:.55rem;flex-wrap:wrap;margin:1rem 0}
.ath-design-filter-desktop a,.ath-design-tags a{padding:.55rem .75rem;border:1px solid #d8c39d;border-radius:999px;background:#fff;color:#4b3d31;font-weight:750}
.ath-design-filter-desktop a.is-active{background:#9d6d1f;color:#fff;border-color:#9d6d1f}
.ath-design-filter-mobile,.ath-mobile-show-more{display:none}
.ath-design-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.ath-design-card{border:1px solid #d8c39d;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 12px 30px rgba(48,32,18,.08)}
.ath-design-card>a{display:grid;color:#241b14}
.ath-design-card img{width:100%;aspect-ratio:4/3;object-fit:cover;background:#f8f1e7}
.ath-design-card span,.ath-design-card strong{padding:.45rem .85rem}
.ath-design-card form{padding:.75rem}
.ath-breadcrumb{display:flex;gap:.55rem;align-items:center;flex-wrap:wrap;margin-bottom:1rem}
.ath-design-head{display:flex;justify-content:space-between;gap:1rem;margin-bottom:1.2rem}
.ath-design-number{display:inline-flex;padding:.42rem .7rem;border-radius:999px;background:#f2dfb7;color:#5c3d0f;font-weight:900}
.ath-design-head-actions{display:flex;gap:.6rem;flex-wrap:wrap}
.ath-design-main{position:relative;border:1px solid #d8c39d;border-radius:22px;overflow:hidden;background:#f8f1e7}
.ath-design-main img,.ath-design-main video{display:block;width:100%;height:min(68vh,680px);object-fit:contain}
.ath-design-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border:0;border-radius:50%;background:rgba(255,255,255,.94);font-size:2rem;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.14)}
.ath-design-prev{inset-inline-start:16px}
.ath-design-next{inset-inline-end:16px}
.ath-design-thumbs{display:flex;gap:.65rem;overflow:auto;padding:.7rem 0}
.ath-design-thumb{flex:0 0 92px;width:92px;height:76px;border:2px solid transparent;border-radius:12px;padding:0;overflow:hidden;background:#fff}
.ath-design-thumb.is-active{border-color:#9d6d1f}
.ath-design-thumb img,.ath-design-thumb video{width:100%;height:100%;object-fit:cover}
.ath-design-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:1.2rem;margin-top:1.2rem}
.ath-design-copy,.ath-design-order-card,.ath-service-note{border:1px solid #d8c39d;border-radius:18px;background:#fff;padding:1.2rem}
.ath-design-order-card{position:sticky;top:90px;height:max-content}
.ath-design-order-card form{display:grid;gap:.75rem}
.ath-empty-state{grid-column:1/-1;padding:1.2rem;border:1px dashed #d8c39d;border-radius:14px;text-align:center}

@media(max-width:900px){
  .ath-design-content-grid{grid-template-columns:1fr}
  .ath-design-order-card{position:static}
  .ath-design-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:640px){
  .ath-design-head{flex-direction:column}
  .ath-design-main img,.ath-design-main video{height:52vh}
  .ath-design-filter-desktop{display:none}
  .ath-design-filter-mobile{display:block;margin:1rem 0}
  .ath-design-card-grid{grid-template-columns:1fr}
  .ath-design-card-grid:not(.is-expanded) [data-design-card]:nth-child(n+9){display:none}
  .ath-mobile-show-more{display:inline-flex;margin:1rem auto 0}
}

/* ALTAHANY_SMART_HOME_GALLERY_V6_9_4 */
.ath-home-hero{padding:34px 0 22px;background:linear-gradient(135deg,#fffdf9,#f6ead5)}
.ath-home-hero-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:2rem;align-items:center}
.ath-home-hero-copy h1{font-size:clamp(2rem,4vw,4rem);line-height:1.08;margin:.7rem 0 1rem;color:#24180f}
.ath-home-hero-copy p{font-size:1.08rem;line-height:1.9;color:#5c4b3d;max-width:680px}
.ath-home-hero-actions,.ath-home-trust{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1rem}
.ath-home-trust span{padding:.45rem .7rem;border-radius:999px;background:#fff;border:1px solid #e5d3b2;font-weight:700}
.ath-home-hero-media{position:relative;min-height:420px;border-radius:26px;overflow:hidden;background:#efe4d2;box-shadow:0 24px 60px rgba(49,31,17,.16)}
.ath-home-hero-slide{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .45s ease}
.ath-home-hero-slide.is-active{opacity:1;pointer-events:auto}
.ath-home-hero-slide img{width:100%;height:100%;object-fit:cover}
.ath-home-hero-caption{position:absolute;inset-inline:18px;bottom:18px;display:flex;justify-content:space-between;gap:1rem;padding:.85rem 1rem;border-radius:16px;background:rgba(255,255,255,.9);backdrop-filter:blur(10px);color:#24180f}
.ath-home-hero-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:46px;height:46px;border:0;border-radius:50%;background:rgba(255,255,255,.92);font-size:1.8rem;cursor:pointer}
.ath-home-hero-arrow.is-prev{inset-inline-start:14px}
.ath-home-hero-arrow.is-next{inset-inline-end:14px}
.ath-home-company-strip{padding:16px 0;background:#24180f;color:#fff}
.ath-home-company-strip .container{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.ath-home-company-strip p{margin:0;line-height:1.8}
.ath-home-company-strip a{color:#f2d79f;font-weight:800;white-space:nowrap}
.ath-home-service-nav,.ath-home-design-gallery{padding:42px 0}
.ath-home-service-tabs{display:flex;gap:.65rem;overflow:auto;padding-bottom:.5rem}
.ath-home-service-tabs a{flex:0 0 auto;display:flex;align-items:center;gap:.55rem;padding:.75rem 1rem;border:1px solid #d8c39d;border-radius:999px;background:#fff;color:#3b2a1d;font-weight:800}
.ath-home-service-tabs a.has-designs{border-color:#b78a3f;background:#fffaf0}
.ath-home-service-tabs small{display:inline-grid;place-items:center;min-width:24px;height:24px;padding:0 .35rem;border-radius:999px;background:#9d6d1f;color:#fff}
.ath-home-service-select,.ath-home-gallery-select{display:none}
.ath-home-gallery-filters{display:flex;gap:.55rem;flex-wrap:wrap;margin:1rem 0}
.ath-home-gallery-filters button{border:1px solid #d8c39d;border-radius:999px;background:#fff;padding:.6rem .85rem;font-weight:800;cursor:pointer}
.ath-home-gallery-filters button.is-active{background:#9d6d1f;color:#fff;border-color:#9d6d1f}
.ath-home-design-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.ath-home-design-card{border:1px solid #dfcba8;border-radius:20px;overflow:hidden;background:#fff;box-shadow:0 14px 35px rgba(49,31,17,.08)}
.ath-home-design-card>a{display:block;color:#2d2016}
.ath-home-design-card img{width:100%;aspect-ratio:4/3;object-fit:cover;background:#f3eadc}
.ath-home-design-card>a div{display:flex;justify-content:space-between;gap:1rem;padding:.85rem 1rem}
.ath-home-design-actions{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;padding:0 1rem 1rem}
.ath-home-design-actions form,.ath-home-design-actions .btn{width:100%}
.ath-home-gallery-more{text-align:center;margin-top:1.25rem}
.ath-home-final-cta{padding:28px 0 52px}
.ath-home-final-cta .container{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;padding:1.5rem;border-radius:24px;background:#fff8ea;border:1px solid #dec69d}
.ath-home-final-cta .container>div:last-child{display:flex;gap:.7rem;flex-wrap:wrap}
.ath-home-design-card[hidden]{display:none!important}

@media(max-width:900px){
  .ath-home-hero-grid{grid-template-columns:1fr}
  .ath-home-design-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ath-home-final-cta .container{align-items:flex-start;flex-direction:column}
}

@media(max-width:640px){
  .ath-home-hero{padding-top:18px}
  .ath-home-hero-media{min-height:320px}
  .ath-home-company-strip .container{align-items:flex-start;flex-direction:column}
  .ath-home-service-tabs,.ath-home-gallery-filters{display:none}
  .ath-home-service-select,.ath-home-gallery-select{display:block}
  .ath-home-design-grid{grid-template-columns:1fr}
  .ath-home-design-grid .ath-home-design-card:nth-child(n+9){display:none}
}

/* ALTAHANY V8.1 CART + FOOTER */
.altahany-footer-v18{background:#24170f!important;color:#fff8eb!important}
.altahany-footer-v18 p,.altahany-footer-v18 span,.altahany-footer-v18 div{color:#fff8eb}
.altahany-footer-v18 .footer-link{color:#fff4dc!important;font-weight:600}
.altahany-footer-v18 .footer-link:hover{color:#f3c978!important}
.altahany-footer-v18 h4{color:#f3c978!important;font-weight:800}
.altahany-footer-v18>div>div:last-child{color:#f2dfbd!important}
.altahany-footer-v18>div>div:last-child a{color:#f3c978!important}

.ath-cart-row-v81{display:grid!important;grid-template-columns:150px minmax(0,1fr) auto!important;gap:1rem!important;align-items:center!important}
.ath-cart-thumb{width:150px;height:120px;border-radius:14px;overflow:hidden;background:#f4eee4}
.ath-cart-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.ath-cart-thumb-empty{height:100%;display:grid;place-items:center;font-size:2rem}
.ath-cart-info h3{margin:.4rem 0;font-size:1.15rem}
.ath-cart-info p{margin:.25rem 0;color:#5f4a3b}
.ath-cart-badges{display:flex;gap:.45rem;flex-wrap:wrap}
.ath-design-number,.ath-service-code{display:inline-flex;padding:.3rem .65rem;border-radius:999px;font-size:.8rem;font-weight:800}
.ath-design-number{background:#2d1b0e;color:#fff}
.ath-service-code{background:#f3e3c4;color:#7d5b22}
.ath-cart-price{margin-top:.45rem;color:#8b6914;font-weight:800}

.ath-cart-mini-v81{display:grid!important;grid-template-columns:64px minmax(0,1fr) auto!important;gap:.7rem!important;align-items:center!important}
.ath-cart-mini-thumb{width:64px;height:58px;border-radius:10px;overflow:hidden;background:#f4eee4;display:grid;place-items:center}
.ath-cart-mini-thumb img{width:100%;height:100%;object-fit:cover}
.ath-cart-mini-copy{min-width:0}
.ath-cart-mini-copy strong{display:block;font-size:.86rem;line-height:1.45}
.ath-cart-drawer-foot{display:grid!important;grid-template-columns:1fr 1fr!important;gap:.6rem!important}

@media(max-width:700px){
  .ath-cart-row-v81{grid-template-columns:100px minmax(0,1fr)!important}
  .ath-cart-thumb{width:100px;height:100px}
  .ath-cart-remove{grid-column:1/-1}
  .ath-cart-remove .btn{width:100%}
}

/* ALTAHANY V8.3.1 PUBLIC CATEGORY LINKING */
.ath-public-category-nav{display:flex;gap:.65rem;overflow-x:auto;padding:.35rem 0 1rem;margin-bottom:1.25rem}
.ath-public-category-nav a{flex:0 0 auto;display:flex;align-items:center;gap:.55rem;padding:.72rem .95rem;border:1px solid #d8c39d;border-radius:999px;background:#fff;color:#3b2a1d;font-weight:800}
.ath-public-category-nav a span{display:grid;place-items:center;min-width:24px;height:24px;padding:0 .35rem;border-radius:999px;background:#9d6d1f;color:#fff;font-size:.75rem}
.ath-public-category-section{scroll-margin-top:110px;padding:1.5rem 0 2.3rem;border-bottom:1px solid rgba(157,109,31,.14)}
.ath-public-category-head{display:flex;justify-content:space-between;align-items:flex-end;gap:1rem;margin-bottom:1rem}
.ath-public-category-head h2{margin:.25rem 0 0}
.ath-public-category-head>span{color:#8b6914;font-weight:800}

.ath-home-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.ath-home-category-card{border:1px solid #d8c39d;border-radius:20px;background:#fff;padding:1rem;box-shadow:0 10px 28px rgba(74,54,22,.06)}
.ath-home-category-card-head{display:grid;grid-template-columns:auto minmax(0,1fr);gap:.2rem .65rem;align-items:center;padding-bottom:.8rem;border-bottom:1px solid #eee3d1}
.ath-home-category-card-head>span{grid-row:1/3;display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:#2d1b0e;color:#fff;font-weight:900}
.ath-home-category-card-head small{color:#8b735f}
.ath-home-category-services{display:grid;gap:.45rem;margin-top:.8rem}
.ath-home-category-services a{display:flex;justify-content:space-between;align-items:center;gap:.65rem;padding:.58rem .65rem;border-radius:11px;color:#3b2a1d;background:#fbf7ef;font-weight:700}
.ath-home-category-services a small{display:grid;place-items:center;min-width:23px;height:23px;padding:0 .35rem;border-radius:999px;background:#9d6d1f;color:#fff;font-size:.7rem}

@media(max-width:900px){.ath-home-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.ath-home-category-grid{display:none}.ath-home-service-select{display:block}}

/* ALTAHANY V8.4.4 FOOTER NEWSLETTER CONTRAST START */

/* Newsletter / subscription area */
.ath-newsletter,
.newsletter-section,
.newsletter-wrap,
.newsletter-card,
.subscribe-section,
.subscription-section,
[class*="newsletter"],
[class*="subscribe"]{
  color:#2b1b11;
}

.ath-newsletter,
.newsletter-section,
.newsletter-wrap,
.subscribe-section,
.subscription-section{
  background:#f7f1e7;
}

.ath-newsletter .container,
.newsletter-card,
[class*="newsletter"] .card,
[class*="subscribe"] .card{
  background:#ffffff;
  border:1px solid #dcc59f;
  border-radius:22px;
  box-shadow:0 12px 34px rgba(45,27,14,.08);
}

.ath-newsletter h2,
.ath-newsletter h3,
.newsletter-section h2,
.newsletter-section h3,
.subscribe-section h2,
.subscribe-section h3,
[class*="newsletter"] h2,
[class*="newsletter"] h3,
[class*="subscribe"] h2,
[class*="subscribe"] h3{
  color:#2b1b11 !important;
  font-weight:800 !important;
  line-height:1.45;
}

.ath-newsletter p,
.newsletter-section p,
.subscribe-section p,
[class*="newsletter"] p,
[class*="subscribe"] p{
  color:#6f5847 !important;
  font-weight:500;
  line-height:1.8;
}

.ath-newsletter label,
.newsletter-section label,
.subscribe-section label,
[class*="newsletter"] label,
[class*="subscribe"] label{
  color:#4a3526 !important;
  font-weight:700;
}

.ath-newsletter input,
.newsletter-section input,
.subscribe-section input,
[class*="newsletter"] input,
[class*="subscribe"] input{
  background:#ffffff !important;
  color:#2b1b11 !important;
  border:1.5px solid #cba96d !important;
  border-radius:14px !important;
  min-height:54px;
  font-size:16px !important;
  font-weight:600;
  box-shadow:none !important;
}

.ath-newsletter input::placeholder,
.newsletter-section input::placeholder,
.subscribe-section input::placeholder,
[class*="newsletter"] input::placeholder,
[class*="subscribe"] input::placeholder{
  color:#8d7a69 !important;
  opacity:1;
}

.ath-newsletter input:focus,
.newsletter-section input:focus,
.subscribe-section input:focus,
[class*="newsletter"] input:focus,
[class*="subscribe"] input:focus{
  outline:none !important;
  border-color:#a97419 !important;
  box-shadow:0 0 0 4px rgba(169,116,25,.13) !important;
}

.ath-newsletter button,
.newsletter-section button,
.subscribe-section button,
[class*="newsletter"] button,
[class*="subscribe"] button{
  min-height:54px;
  border-radius:14px !important;
  font-size:17px !important;
  font-weight:800 !important;
}

/* Footer */
footer.altahany-footer-v18,
.altahany-footer-v18,
footer.site-footer,
.site-footer{
  background:linear-gradient(180deg,#2a1a11 0%,#1f140d 100%) !important;
  color:#fff8ed !important;
  border-top:1px solid #b88736 !important;
}

footer.altahany-footer-v18 *,
.altahany-footer-v18 *,
footer.site-footer *,
.site-footer *{
  text-shadow:none !important;
}

footer.altahany-footer-v18 h3,
footer.altahany-footer-v18 h4,
.altahany-footer-v18 h3,
.altahany-footer-v18 h4,
footer.site-footer h3,
footer.site-footer h4,
.site-footer h3,
.site-footer h4{
  color:#f4cc82 !important;
  font-weight:800 !important;
  letter-spacing:0;
}

footer.altahany-footer-v18 p,
footer.altahany-footer-v18 span,
footer.altahany-footer-v18 li,
.altahany-footer-v18 p,
.altahany-footer-v18 span,
.altahany-footer-v18 li,
footer.site-footer p,
footer.site-footer span,
footer.site-footer li,
.site-footer p,
.site-footer span,
.site-footer li{
  color:#f7ead7 !important;
  opacity:1 !important;
  font-weight:500;
  line-height:1.85;
}

footer.altahany-footer-v18 a,
.altahany-footer-v18 a,
footer.site-footer a,
.site-footer a{
  color:#fff4df !important;
  opacity:1 !important;
  font-weight:700;
  text-decoration:none;
}

footer.altahany-footer-v18 a:hover,
.altahany-footer-v18 a:hover,
footer.site-footer a:hover,
.site-footer a:hover{
  color:#f4cc82 !important;
}

footer.altahany-footer-v18 .footer-link,
.altahany-footer-v18 .footer-link,
footer.site-footer .footer-link,
.site-footer .footer-link{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  color:#fff4df !important;
  font-size:15px;
}

footer.altahany-footer-v18 img,
.altahany-footer-v18 img,
footer.site-footer img,
.site-footer img{
  filter:none !important;
  opacity:1 !important;
}

footer.altahany-footer-v18 .social-links a,
.altahany-footer-v18 .social-links a,
footer.site-footer .social-links a,
.site-footer .social-links a{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#fff8ed !important;
  color:#2a1a11 !important;
  border:1px solid #d8ae67;
}

footer.altahany-footer-v18 .social-links a:hover,
.altahany-footer-v18 .social-links a:hover,
footer.site-footer .social-links a:hover,
.site-footer .social-links a:hover{
  background:#f4cc82 !important;
  color:#20130c !important;
}

footer.altahany-footer-v18 .footer-bottom,
.altahany-footer-v18 .footer-bottom,
footer.site-footer .footer-bottom,
.site-footer .footer-bottom{
  border-top:1px solid rgba(244,204,130,.28) !important;
  color:#ead7ba !important;
}

footer.altahany-footer-v18 .footer-bottom a,
.altahany-footer-v18 .footer-bottom a,
footer.site-footer .footer-bottom a,
.site-footer .footer-bottom a{
  color:#f4cc82 !important;
}

/* Floating cart clarity */
.ath-cart-fab{
  background:#b07a1d !important;
  color:#ffffff !important;
  border:2px solid #fff7e7 !important;
  box-shadow:0 12px 28px rgba(45,27,14,.28) !important;
}

.ath-cart-fab span{
  background:#2b1b11 !important;
  color:#ffffff !important;
  border:2px solid #ffffff !important;
}

@media(max-width:768px){
  .ath-newsletter .container,
  .newsletter-card,
  [class*="newsletter"] .card,
  [class*="subscribe"] .card{
    padding:1.15rem !important;
    border-radius:18px !important;
  }

  .ath-newsletter form,
  .newsletter-section form,
  .subscribe-section form,
  [class*="newsletter"] form,
  [class*="subscribe"] form{
    width:100% !important;
    max-width:none !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:.7rem !important;
  }

  .ath-newsletter input,
  .newsletter-section input,
  .subscribe-section input,
  [class*="newsletter"] input,
  [class*="subscribe"] input,
  .ath-newsletter button,
  .newsletter-section button,
  .subscribe-section button,
  [class*="newsletter"] button,
  [class*="subscribe"] button{
    width:100% !important;
  }

  footer.altahany-footer-v18,
  .altahany-footer-v18,
  footer.site-footer,
  .site-footer{
    text-align:start !important;
  }

  footer.altahany-footer-v18 .footer-grid,
  .altahany-footer-v18 .footer-grid,
  footer.site-footer .footer-grid,
  .site-footer .footer-grid{
    gap:1.4rem !important;
  }
}

/* ALTAHANY V8.4.4 FOOTER NEWSLETTER CONTRAST END */

/* ALTAHANY V8.4.5 EXACT FOOTER CONTRAST START */
.pub-footer.altahany-footer-v18{
  background:linear-gradient(180deg,#2d1b11 0%,#21130c 100%) !important;
  color:#fff7e8 !important;
  border-top:1px solid #c89643 !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-card{
  background:#fffdf9 !important;
  border:1px solid #d8bd8f !important;
  border-radius:22px !important;
  box-shadow:0 12px 34px rgba(34,20,12,.16) !important;
  padding:1.35rem 1.5rem !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-copy .section-kicker{
  color:#a8741e !important; opacity:1 !important; font-weight:800 !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-copy h3{
  color:#26170f !important; opacity:1 !important; font-weight:900 !important; line-height:1.45 !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-copy p{
  color:#6a5443 !important; opacity:1 !important; font-weight:600 !important; line-height:1.8 !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-form input{
  background:#fff !important; color:#27180f !important; border:1.5px solid #caa66a !important;
  min-height:54px !important; border-radius:14px !important; font-size:16px !important; font-weight:700 !important;
}
.pub-footer.altahany-footer-v18 .footer-subscribe-form input::placeholder{color:#75685d !important;opacity:1 !important}
.pub-footer.altahany-footer-v18 .footer-subscribe-form .btn,
.pub-footer.altahany-footer-v18 .footer-subscribe-form button{
  background:#ad761a !important; color:#fff !important; border-color:#ad761a !important;
  min-height:54px !important; border-radius:14px !important; font-size:17px !important; font-weight:900 !important;
}
.pub-footer.altahany-footer-v18 .footer-column h3,
.pub-footer.altahany-footer-v18 .footer-column h4,
.pub-footer.altahany-footer-v18 .footer-title{
  color:#f2c873 !important; opacity:1 !important; font-weight:900 !important;
}
.pub-footer.altahany-footer-v18 .footer-brand p,
.pub-footer.altahany-footer-v18 .footer-column p,
.pub-footer.altahany-footer-v18 .footer-column span,
.pub-footer.altahany-footer-v18 .footer-column li{
  color:#f1dfc7 !important; opacity:1 !important; font-weight:600 !important;
}
.pub-footer.altahany-footer-v18 .footer-link{
  color:#fff4e1 !important; opacity:1 !important; font-weight:700 !important;
}
.pub-footer.altahany-footer-v18 .footer-link:hover{color:#f2c873 !important}
.pub-footer.altahany-footer-v18 .footer-brand img{
  background:#fffaf2 !important; border-radius:14px !important; padding:.5rem .75rem !important;
  opacity:1 !important; filter:none !important;
}
.pub-footer.altahany-footer-v18 .footer-socials{display:flex !important;gap:.65rem !important;flex-wrap:wrap !important}
.pub-footer.altahany-footer-v18 .footer-social{
  width:44px !important;height:44px !important;display:grid !important;place-items:center !important;
  border-radius:50% !important;background:#fff8eb !important;border:1px solid #d5aa61 !important;opacity:1 !important;
}
.pub-footer.altahany-footer-v18 .footer-social svg{width:22px !important;height:22px !important;stroke:currentColor !important;fill:none !important;stroke-width:1.8 !important}
.pub-footer.altahany-footer-v18 .footer-social.instagram{color:#b3206a !important}
.pub-footer.altahany-footer-v18 .footer-social.tiktok{color:#111 !important}
.pub-footer.altahany-footer-v18 .footer-social.facebook{color:#1565d8 !important}
.pub-footer.altahany-footer-v18 .footer-social.whatsapp{color:#0b8f54 !important}
.pub-footer.altahany-footer-v18 .footer-bottom{
  border-top:1px solid rgba(242,200,115,.30) !important;color:#ead6b8 !important;opacity:1 !important;
}
.pub-footer.altahany-footer-v18 .footer-bottom *{color:#ead6b8 !important;opacity:1 !important}
.pub-footer.altahany-footer-v18 .footer-bottom a{color:#f2c873 !important;font-weight:800 !important}
@media(max-width:768px){
  .pub-footer.altahany-footer-v18 .footer-subscribe-card{padding:1rem !important}
  .pub-footer.altahany-footer-v18 .footer-subscribe-form{display:grid !important;grid-template-columns:1fr !important;gap:.7rem !important;width:100% !important}
  .pub-footer.altahany-footer-v18 .footer-subscribe-form input,
  .pub-footer.altahany-footer-v18 .footer-subscribe-form button{width:100% !important}
  .pub-footer.altahany-footer-v18 .footer-grid{grid-template-columns:1fr !important;gap:1.4rem !important}
  .pub-footer.altahany-footer-v18 .footer-column,
  .pub-footer.altahany-footer-v18 .footer-brand{text-align:start !important}
}
/* ALTAHANY V8.4.5 EXACT FOOTER CONTRAST END */

/* ALTAHANY V8.6 ALBUM FIRST SERVICE START */
.ath-album-service-hero{
  padding:clamp(32px,5vw,64px) 0 28px;
  background:linear-gradient(135deg,#fffdf9 0%,#f8f0e3 100%);
  border-bottom:1px solid #ead8b8;
}
.ath-album-breadcrumb{
  display:flex;
  align-items:center;
  gap:.45rem;
  flex-wrap:wrap;
  margin-bottom:1rem;
  color:#765d46;
  font-size:.88rem;
}
.ath-album-breadcrumb a{color:#986817;font-weight:800}
.ath-album-service-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:1.25rem;
  align-items:end;
}
.ath-album-service-hero h1{
  margin:.3rem 0 .7rem;
  color:#2c1a10;
  font-size:clamp(2rem,4.8vw,4rem);
  line-height:1.08;
}
.ath-album-service-hero p{
  max-width:760px;
  margin:0;
  color:#685342;
  line-height:1.85;
}
.ath-album-service-stats{
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
  margin-top:1rem;
}
.ath-album-service-stats span{
  padding:.55rem .8rem;
  border:1px solid #dec79f;
  border-radius:999px;
  background:#fff;
  color:#5c432e;
}
.ath-album-service-stats strong{color:#9f6d17}
.ath-album-service-actions{display:flex;gap:.65rem;flex-wrap:wrap}

.ath-album-catalog-section{padding:clamp(32px,5vw,60px) 0}
.ath-album-catalog-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1rem;
  margin-bottom:1.1rem;
}
.ath-album-catalog-head h2{margin:.3rem 0 0;color:#2c1a10}
.ath-text-link{color:#9c6a17;font-weight:900}

.ath-album-filter-scroll{
  display:flex;
  gap:.55rem;
  overflow-x:auto;
  scrollbar-width:none;
  padding:.15rem 0 .9rem;
  margin-bottom:1rem;
  -webkit-overflow-scrolling:touch;
}
.ath-album-filter-scroll::-webkit-scrollbar{display:none}
.ath-album-filter-scroll a{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  flex:0 0 auto;
  min-height:42px;
  padding:.58rem .8rem;
  border:1px solid #d9c092;
  border-radius:999px;
  background:#fff;
  color:#5b412d;
  font-weight:800;
}
.ath-album-filter-scroll a span{
  display:grid;
  place-items:center;
  min-width:22px;
  height:22px;
  padding:0 .3rem;
  border-radius:999px;
  background:#f2e3c8;
  color:#8e6118;
  font-size:.72rem;
}
.ath-album-filter-scroll a.is-active{
  background:#2c1a10;
  color:#fff;
  border-color:#2c1a10;
}
.ath-album-filter-scroll a.is-active span{
  background:#c18a2d;
  color:#fff;
}

.ath-design-album-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.ath-design-album-card{
  overflow:hidden;
  border:1px solid #e2cfac;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 30px rgba(52,32,18,.07);
  content-visibility:auto;
  contain-intrinsic-size:430px;
}
.ath-design-album-image{
  position:relative;
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f1e8da;
}
.ath-design-album-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}
.ath-design-album-card:hover .ath-design-album-image img{transform:scale(1.025)}
.ath-design-album-fallback{
  display:grid;
  place-items:center;
  height:100%;
  font-size:3rem;
  font-weight:900;
  color:#a27224;
}
.ath-design-number{
  position:absolute;
  top:.7rem;
  inset-inline-start:.7rem;
  padding:.38rem .62rem;
  border-radius:999px;
  background:rgba(35,20,12,.88);
  color:#fff;
  font-weight:900;
}
.ath-design-open-hint{
  position:absolute;
  inset-inline-end:.7rem;
  bottom:.7rem;
  padding:.38rem .62rem;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#5c3b16;
  font-size:.78rem;
  font-weight:900;
}
.ath-design-album-body{padding:.9rem}
.ath-design-album-title h3{
  margin:0;
  color:#2d1b11;
  font-size:1.05rem;
}
.ath-design-album-title small{
  display:block;
  min-height:1.25rem;
  margin-top:.28rem;
  color:#806a57;
}
.ath-design-album-actions{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:.5rem;
  margin-top:.8rem;
}
.ath-design-album-actions form,
.ath-design-album-actions .btn{width:100%}
.ath-icon-action{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid #d6b879;
  border-radius:13px;
  background:#fff;
  color:#8e6118;
  font-weight:900;
  cursor:pointer;
}
.ath-icon-action:hover{background:#f7ead3}
.ath-album-pagination{margin-top:1.3rem}
.ath-album-empty{padding:2rem}

.ath-linked-albums-section{
  padding:0 0 clamp(36px,5vw,64px);
}
.ath-linked-album-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.8rem;
}
.ath-linked-album-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:.65rem;
  padding:1rem;
  border:1px solid #dec69a;
  border-radius:16px;
  background:#fffaf2;
  color:#342116;
}
.ath-linked-album-card span{font-weight:900}
.ath-linked-album-card small{color:#7c6654}
.ath-linked-album-card b{color:#a97419}

.ath-home-service-nav,
.ath-home-design-gallery,
.ath-section{
  scroll-margin-top:90px;
}

@media(max-width:980px){
  .ath-design-album-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ath-linked-album-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:720px){
  .ath-album-service-hero{padding:24px 0 20px}
  .ath-album-service-hero-grid{grid-template-columns:1fr}
  .ath-album-service-actions{display:grid;grid-template-columns:1fr 1fr}
  .ath-album-catalog-section{padding:28px 0}
  .ath-album-catalog-head{align-items:start}
  .ath-design-album-grid{grid-template-columns:1fr 1fr;gap:.65rem}
  .ath-design-album-card{border-radius:15px;contain-intrinsic-size:330px}
  .ath-design-album-body{padding:.65rem}
  .ath-design-album-title h3{font-size:.92rem}
  .ath-design-album-title small{font-size:.72rem}
  .ath-design-album-actions{
    grid-template-columns:1fr 1fr;
    gap:.4rem;
  }
  .ath-design-album-actions .ath-icon-action{
    position:absolute;
    top:.55rem;
    inset-inline-end:.55rem;
    z-index:2;
    width:38px;
    height:38px;
    background:rgba(255,255,255,.94);
  }
  .ath-design-album-card{position:relative}
  .ath-design-number{font-size:.76rem}
  .ath-design-open-hint{display:none}
  .ath-linked-album-grid{grid-template-columns:1fr}
}
@media(max-width:430px){
  .ath-design-album-grid{grid-template-columns:1fr}
  .ath-design-album-image{aspect-ratio:16/11}
}
/* ALTAHANY V8.6 ALBUM FIRST SERVICE END */
