/* Woodooz Luxury Collections v2.5.3 */
.wdz-lux-section{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-top:-20px;
  position:relative;
  background:var(--wdz-bg);
  color:var(--wdz-text);
  font-family:Manrope,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow:hidden;
  box-sizing:border-box;
}
.wdz-lux-inner{
  width:min(1280px,100%);
  margin:0 auto;
  padding:48px 30px 44px;
  box-sizing:border-box;
  text-align:center;
}
.wdz-lux-eyebrow{font-size:11px;letter-spacing:.42em;font-weight:600;color:var(--wdz-accent);margin:0 0 8px}
.wdz-lux-ornament{color:var(--wdz-accent);font-size:23px;line-height:18px;margin:0 0 8px}
.wdz-lux-heading{font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(44px,4vw,62px);font-weight:500;line-height:1.02;margin:0 0 10px;color:var(--wdz-text)}
.wdz-lux-subheading{font-size:16px;line-height:1.6;margin:0 auto 32px;color:var(--wdz-text);opacity:.84}

/* Carousel wrapper: wheel/touch/drag can begin anywhere over the collection area. */
.wdz-lux-carousel{position:relative;width:100%;box-sizing:border-box}
.wdz-lux-categories{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  flex-wrap:nowrap;
  gap:18px;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-padding-left:0;
  scrollbar-width:none;
  padding:0 10px 10px;
  margin:0;
  box-sizing:border-box;
  cursor:grab;
  touch-action:pan-x;
  overscroll-behavior-x:contain;
}
.wdz-lux-categories::-webkit-scrollbar{display:none}
.wdz-lux-categories.is-dragging{cursor:grabbing;scroll-snap-type:none}

/* Six cards on laptop/desktop, with a small peek of the next card when one exists. */
.wdz-lux-category{
  position:relative;
  flex:0 0 calc((100% - 124px) / 6.15);
  width:calc((100% - 124px) / 6.15);
  min-width:0;
  color:inherit;
  text-decoration:none;
  padding:0;
  box-sizing:border-box;
  scroll-snap-align:start;
  transition:transform .25s ease;
}
.wdz-lux-category:hover{transform:translateY(-3px)}
.wdz-lux-image{aspect-ratio:1/1;overflow:hidden;background:#e7dfd3;margin-bottom:15px;border-radius:4px}
.wdz-lux-image img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.wdz-lux-category:hover .wdz-lux-image img{transform:scale(1.045)}
.wdz-lux-placeholder{height:100%;display:grid;place-items:center;color:var(--wdz-accent)}
.wdz-lux-placeholder svg{width:54px;height:54px}
.wdz-lux-info{position:relative;min-height:78px;padding:0 14px;box-sizing:border-box}
/* Gold separators between category information, matching the original sample. */
.wdz-lux-category:not(:last-child) .wdz-lux-info:after{
  content:"";
  position:absolute;
  top:3px;
  right:-9px;
  width:1px;
  height:72px;
  background:color-mix(in srgb,var(--wdz-accent) 52%,transparent);
}
.wdz-lux-icon{height:28px;color:var(--wdz-accent);display:flex;justify-content:center;align-items:center;margin-bottom:5px}
.wdz-lux-icon svg{width:28px;height:28px}
.wdz-lux-cat-title{font-size:13px;letter-spacing:.13em;font-weight:700;text-transform:uppercase;line-height:1.3}
.wdz-lux-cat-desc{font-size:11px;line-height:1.45;opacity:.7;margin-top:5px}

/* Navigation arrows sit over the left/right edges and become visible only when scrolling is possible. */
.wdz-lux-arrow{
  position:absolute;
  top:calc(50% - 25px);
  z-index:4;
  width:40px;
  height:40px;
  border:1px solid color-mix(in srgb,var(--wdz-accent) 45%,transparent);
  border-radius:50%;
  background:color-mix(in srgb,var(--wdz-bg) 92%,white);
  color:var(--wdz-accent);
  font-family:Georgia,serif;
  font-size:31px;
  line-height:34px;
  padding:0 0 4px;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 3px 12px rgba(0,0,0,.08);
}
.wdz-lux-arrow:hover{background:var(--wdz-accent);color:#fff}
.wdz-lux-prev{left:-3px}.wdz-lux-next{right:-3px}
.wdz-lux-carousel.has-overflow .wdz-lux-arrow{display:flex}
.wdz-lux-carousel.at-start .wdz-lux-prev{opacity:.35;pointer-events:none}
.wdz-lux-carousel.at-end .wdz-lux-next{opacity:.35;pointer-events:none}

.wdz-lux-statement{font-family:"Cormorant Garamond",Georgia,serif;font-size:24px;margin:31px 0 17px}
.wdz-lux-statement span{display:block;width:35px;border-top:1px solid var(--wdz-accent);margin:9px auto 0}
.wdz-lux-button{display:inline-flex;align-items:center;gap:12px;background:var(--wdz-accent);color:#fff;text-decoration:none;font-size:11px;letter-spacing:.14em;font-weight:700;padding:13px 23px;transition:opacity .2s ease,transform .2s ease}
.wdz-lux-button:hover{color:#fff;opacity:.9;transform:translateY(-1px)}
.wdz-lux-button b{font-size:18px;line-height:10px;font-weight:400}

/* Tablet: four cards, with a small peek of the fifth. */
@media (max-width:1100px){
  .wdz-lux-inner{padding:44px 24px 40px}
  .wdz-lux-categories{gap:14px;padding-left:8px;padding-right:8px}
  .wdz-lux-category{
    flex-basis:calc((100% - 72px) / 4.15);
    width:calc((100% - 72px) / 4.15);
  }
  .wdz-lux-info{padding:0 10px}
  .wdz-lux-category:not(:last-child) .wdz-lux-info:after{right:-7px;height:70px}
  .wdz-lux-arrow{width:36px;height:36px;font-size:28px}
  .wdz-lux-prev{left:-4px}.wdz-lux-next{right:-4px}
}

/* Mobile: one or two cards, selected in the plugin settings, plus a deliberate next-card peek. */
@media (max-width:560px){
  .wdz-lux-inner{padding:34px 16px 30px}
  .wdz-lux-eyebrow{font-size:9px;letter-spacing:.32em;margin-bottom:7px}
  .wdz-lux-ornament{font-size:20px;margin-bottom:7px}
  .wdz-lux-heading{font-size:40px}
  .wdz-lux-subheading{font-size:13px;margin-bottom:25px}
  .wdz-lux-categories{gap:14px;padding-left:8px;padding-right:8px}
  .wdz-lux-category{flex-basis:calc((100% - 36px) / 1.15);width:calc((100% - 36px) / 1.15)}
  .wdz-lux-section[style*="--wdz-mobile-cols:2"] .wdz-lux-category{flex-basis:calc((100% - 32px) / 2.15);width:calc((100% - 32px) / 2.15)}
  .wdz-lux-image{margin-bottom:13px}
  .wdz-lux-info{min-height:72px;padding:0 8px}
  .wdz-lux-category:not(:last-child) .wdz-lux-info:after{right:-7px;height:65px}
  .wdz-lux-icon{height:27px}.wdz-lux-icon svg{width:27px;height:27px}
  .wdz-lux-cat-title{font-size:11px;letter-spacing:.1em}.wdz-lux-cat-desc{font-size:10px}
  .wdz-lux-statement{font-size:21px;line-height:1.2;margin-top:27px}
  .wdz-lux-button{font-size:10px;padding:12px 18px}
  .wdz-lux-arrow{width:34px;height:34px;font-size:26px;top:calc(50% - 22px)}
  .wdz-lux-prev{left:-2px}.wdz-lux-next{right:-2px}
}

/* Backend live preview mirrors the same responsive card counts. */
#wdz-preview-device .wdz-lux-section{width:100%;max-width:100%;margin-left:0;margin-top:0}
#wdz-preview-device .wdz-lux-inner{max-width:1280px}
#wdz-preview-device.tablet .wdz-lux-category{flex-basis:calc((100% - 72px) / 4.15);width:calc((100% - 72px) / 4.15)}
#wdz-preview-device.mobile .wdz-lux-inner{padding:30px 14px}
#wdz-preview-device.mobile .wdz-lux-heading{font-size:34px}
#wdz-preview-device.mobile .wdz-lux-subheading{font-size:12px;margin-bottom:22px}
#wdz-preview-device.mobile .wdz-lux-categories{gap:14px;padding-left:8px;padding-right:8px}
#wdz-preview-device.mobile .wdz-lux-category{flex-basis:calc((100% - 36px) / 1.15);width:calc((100% - 36px) / 1.15)}
#wdz-preview-device.mobile .wdz-lux-section[style*="--wdz-mobile-cols:2"] .wdz-lux-category{flex-basis:calc((100% - 32px) / 2.15);width:calc((100% - 32px) / 2.15)}
#wdz-preview-device .wdz-lux-arrow{display:none}
#wdz-preview-device .wdz-lux-carousel.has-overflow .wdz-lux-arrow{display:flex}
