.elementor-2226 .elementor-element.elementor-element-e0ab6f2{--display:flex;overflow:visible;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family );font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS for text-editor, class: .elementor-element-2599664 *//* ============================================================
   MODERNO COLLECTION — COLOR PALETTE + PRODUCT DETAIL LIGHTBOX
   Paste into: Appearance > Customize > Additional CSS

   ELEMENTOR SETUP (required for full width):
   1. Click the SECTION row containing your HTML widget
   2. Layout tab → Content Width: Full Width, Column Gap: No Gap
   3. Click the COLUMN → Advanced tab → all Padding to 0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --mg-gold: #c9a96e;
  --mg-gold-light: #e8d5b0;
  --mg-gold-muted: #9a7a4e;
  --mg-cream: #f5f0e8;
  --mg-cream-dim: rgba(245, 240, 232, 0.65);
  --mg-cream-faint: rgba(245, 240, 232, 0.30);
  --mg-bg: #0e0d0b;
  --mg-bg-card: #111210;
  --mg-rule: rgba(201, 169, 110, 0.18);
}

/* ── Elementor full-width breakout ── */
.elementor-widget-html {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-element:has(.mg-section),
.elementor-element:has(.mg-section) .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.mg-section {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 130px 0 150px;
  background: var(--mg-bg);
}

/* ── Inner container ── */
.mg-inner {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.mg-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 88px;
  padding-bottom: 52px;
  border-bottom: 0.5px solid var(--mg-rule);
}

.mg-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mg-eyebrow-line {
  width: 40px;
  height: 0.5px;
  background: var(--mg-gold);
  flex-shrink: 0;
}

.mg-eyebrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--mg-gold);
}

.mg-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--mg-cream);
  letter-spacing: -0.5px;
}

.mg-headline em {
  font-style: italic;
  color: var(--mg-gold-light);
}

.mg-descriptor {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 2.0;
  color: var(--mg-cream-dim);
  font-weight: 300;
  max-width: 460px;
  margin-left: auto;
  border-left: 0.5px solid var(--mg-rule);
  padding-left: 32px;
}

/* ════════════════════════════════
   GRID
════════════════════════════════ */
.mg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  width: 100%;
  align-items: start;
  background: var(--mg-bg);
}

/* ════════════════════════════════
   CARD
════════════════════════════════ */
.mg-card {
  background: var(--mg-bg-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mg-card:nth-child(even) { margin-top: 52px; }

.mg-card-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.mg-card-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: brightness(0.93) saturate(0.88);
}

.mg-card:hover .mg-card-image-wrap img {
  transform: scale(1.05);
  filter: brightness(1.0) saturate(1.0);
}

.mg-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 11, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s ease;
  z-index: 2;
}

.mg-card:hover .mg-card-overlay { background: rgba(14, 13, 11, 0.42); }

.mg-overlay-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 0.5px solid rgba(201, 169, 110, 0.65);
  background: rgba(14, 13, 11, 0.6);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  pointer-events: none;
}

.mg-card:hover .mg-overlay-pill {
  opacity: 1;
  transform: translateY(0);
}

.mg-overlay-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: var(--mg-gold-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mg-overlay-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-gold-light);
  white-space: nowrap;
}

.mg-card-body {
  padding: 22px 24px 28px;
  border-top: 0.5px solid var(--mg-rule);
}

.mg-card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-gold-muted);
  margin-bottom: 8px;
}

.mg-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--mg-cream);
  line-height: 1.0;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.mg-card:hover .mg-card-name { color: var(--mg-gold-light); }

.mg-card-cta { display: flex; align-items: center; gap: 12px; }

.mg-cta-line {
  width: 0;
  height: 0.5px;
  background: var(--mg-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mg-card:hover .mg-cta-line { width: 22px; }

.mg-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-gold);
}

/* ── Footer row ── */
.mg-footer-row {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 0.5px solid var(--mg-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mg-footer-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mg-cream-faint);
}

.mg-footer-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--mg-gold-muted);
  letter-spacing: 1px;
}

/* ── Entrance animations ── */
@keyframes mg-fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mg-header            { animation: mg-fadeUp 0.9s ease both; }
.mg-card:nth-child(1) { animation: mg-fadeUp 0.7s 0.10s ease both; }
.mg-card:nth-child(2) { animation: mg-fadeUp 0.7s 0.20s ease both; }
.mg-card:nth-child(3) { animation: mg-fadeUp 0.7s 0.30s ease both; }
.mg-card:nth-child(4) { animation: mg-fadeUp 0.7s 0.40s ease both; }
.mg-card:nth-child(5) { animation: mg-fadeUp 0.7s 0.50s ease both; }
.mg-footer-row        { animation: mg-fadeUp 0.7s 0.65s ease both; }

/* ════════════════════════════════
   PRODUCT DETAIL LIGHTBOX
════════════════════════════════ */
#mg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 6, 0.0);
  padding: 24px;
  pointer-events: none;
  transition: background 0.45s ease;
  font-family: 'Montserrat', sans-serif;
}

#mg-lightbox.mg-open {
  background: rgba(8, 7, 6, 0.95);
  pointer-events: all;
}

/* ── Modal box ── */
.mg-lb-modal {
  width: 100%;
  max-width: 1160px;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  background: #0f0e0c;
  border: 0.5px solid var(--mg-rule);
  opacity: 0;
  transform: scale(0.97) translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  overflow: hidden;
}

#mg-lightbox.mg-open .mg-lb-modal {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Left: room scene ── */
.mg-lb-scene {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.mg-lb-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 10s ease;
}

#mg-lightbox.mg-open .mg-lb-scene-img {
  transform: scale(1.04);
}

/* Scene placeholder when no image */
.mg-lb-scene-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0c0b09;
}

.mg-lb-scene-placeholder svg {
  opacity: 0.18;
}

.mg-lb-scene-placeholder span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-cream-faint);
}

/* Flooring swatch thumbnail — bottom left of scene */
.mg-lb-swatch-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 11, 9, 0.82);
  border: 0.5px solid var(--mg-rule);
  padding: 10px 16px 10px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}

.mg-lb-swatch-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.mg-lb-swatch-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mg-lb-swatch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--mg-cream);
  line-height: 1;
}

.mg-lb-swatch-sub {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mg-gold-muted);
}

/* ── Right: product detail panel ── */
.mg-lb-panel {
  display: flex;
  flex-direction: column;
  border-left: 0.5px solid var(--mg-rule);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--mg-rule) transparent;
}

.mg-lb-panel::-webkit-scrollbar { width: 3px; }
.mg-lb-panel::-webkit-scrollbar-thumb { background: var(--mg-rule); }

/* Close button — top right of panel */
.mg-lb-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 36px;
  padding: 0 16px 0 12px;
  background: rgba(14, 13, 11, 0.8);
  border: 0.5px solid var(--mg-rule);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  transition: border-color 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mg-lb-close-btn:hover {
  border-color: var(--mg-gold-muted);
  background: rgba(201, 169, 110, 0.1);
}

.mg-lb-close-btn svg {
  width: 11px;
  height: 11px;
  stroke: var(--mg-cream-dim);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.mg-lb-close-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-cream-dim);
  transition: color 0.25s ease;
}

.mg-lb-close-btn:hover .mg-lb-close-label {
  color: var(--mg-gold-light);
}

/* ── Panel top ── */
.mg-lb-panel-top {
  padding: 44px 40px 32px;
  border-bottom: 0.5px solid var(--mg-rule);
  flex-shrink: 0;
}

.mg-lb-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mg-gold-muted);
  margin-bottom: 14px;
}

.mg-lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 300;
  color: var(--mg-cream);
  line-height: 0.95;
  margin-bottom: 8px;
}

.mg-lb-subtitle {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-gold);
  margin-bottom: 24px;
}

.mg-lb-desc {
  font-size: 13px;
  line-height: 2.0;
  color: var(--mg-cream-dim);
  font-weight: 300;
}

/* ── Panel middle: .elementor-2226 .elementor-element.elementor-element-2599664s ── */
.mg-lb-panel-mid {
  padding: 32px 40px;
  border-bottom: 0.5px solid var(--mg-rule);
  flex-shrink: 0;
}

.mg-lb-field {
  margin-bottom: 24px;
}

.mg-lb-field:last-child { margin-bottom: 0; }

.mg-lb-field-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mg-cream-faint);
  margin-bottom: 10px;
  display: block;
}

/* Custom select styling */
.mg-lb-select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(201, 169, 110, 0.25);
  color: var(--mg-cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  padding: 13px 40px 13px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7a4e' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.mg-lb-select:hover,
.mg-lb-select:focus {
  border-color: var(--mg-gold-muted);
  background-color: rgba(201, 169, 110, 0.05);
}

.mg-lb-select option {
  background: #141210;
  color: var(--mg-cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

/* Spec grid */
.mg-lb-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mg-rule);
  margin-top: 28px;
}

.mg-lb-spec {
  background: #0f0e0c;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mg-lb-spec-label {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mg-cream-faint);
}

.mg-lb-spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--mg-cream-dim);
}

/* ── Panel bottom: CTA ── */
.mg-lb-panel-bot {
  padding: 28px 40px 36px;
  margin-top: auto;
  flex-shrink: 0;
}

.mg-lb-sample-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 28px;
  background: var(--mg-gold);
  color: #0a0908;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.mg-lb-sample-btn:hover {
  background: var(--mg-gold-light);
  letter-spacing: 4.5px;
}

.mg-lb-dismiss {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 28px;
  background: transparent;
  color: var(--mg-cream-faint);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 0.5px solid var(--mg-rule);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.mg-lb-dismiss:hover {
  border-color: var(--mg-gold-muted);
  color: var(--mg-cream-dim);
}

/* ── Collection navigation dots ── */
.mg-lb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 40px 24px;
  flex-shrink: 0;
}

.mg-lb-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mg-rule);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.mg-lb-nav-dot.mg-active {
  background: var(--mg-gold);
  transform: scale(1.4);
}

.mg-lb-nav-dot:hover { background: var(--mg-gold-muted); }

/* ════════════════════════════════
   TABLET  ≤ 1100px
════════════════════════════════ */
@media (max-width: 1100px) {
  .mg-section { padding: 100px 0 120px !important; }
  .mg-inner { padding: 0 48px; }
  .mg-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .mg-descriptor { margin-left: 0; max-width: 560px; padding-left: 24px; }
  .mg-grid { grid-template-columns: repeat(2, 1fr); }
  .mg-card:nth-child(even) { margin-top: 40px; }
  .mg-card:last-child { grid-column: 1 / -1; margin-top: 0; }
  .mg-card:last-child .mg-card-image-wrap img { height: 360px; }

  .mg-lb-modal { grid-template-columns: 1fr 380px; max-width: 96vw; }
  .mg-lb-panel-top { padding: 44px 32px 28px; }
  .mg-lb-panel-mid { padding: 28px 32px; }
  .mg-lb-panel-bot { padding: 24px 32px 32px; }
  .mg-lb-nav { padding: 0 32px 20px; }
}

/* ════════════════════════════════
   MOBILE  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .mg-section { padding: 72px 0 96px !important; }
  .mg-inner { padding: 0 24px; }
  .mg-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; padding-bottom: 32px; }
  .mg-descriptor { margin-left: 0; max-width: 100%; padding-left: 20px; font-size: 13px; }
  .mg-grid { grid-template-columns: 1fr; gap: 3px; }
  .mg-card { display: grid; grid-template-columns: 130px 1fr; min-height: 160px; }
  .mg-card:nth-child(even) { margin-top: 0; }
  .mg-card:last-child { grid-column: auto; margin-top: 0; }
  .mg-card-image-wrap { height: 100%; }
  .mg-card-image-wrap img { height: 100%; min-height: 160px; }
  .mg-card-overlay { display: none; }
  .mg-card-body { padding: 18px 20px 20px; border-top: none; border-left: 0.5px solid var(--mg-rule); display: flex; flex-direction: column; justify-content: center; }
  .mg-card-name { font-size: 24px; margin-bottom: 10px; }
  .mg-footer-row { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 56px; }

  /* Lightbox stacks vertically on mobile */
  #mg-lightbox { padding: 0; align-items: flex-end; }

  .mg-lb-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw auto;
    max-width: 100%;
    max-height: 96vh;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .mg-lb-scene { min-height: unset; }
  .mg-lb-scene-placeholder { min-height: 52vw; }

  .mg-lb-panel { border-left: none; border-top: 0.5px solid var(--mg-rule); }
  .mg-lb-panel-top { padding: 28px 24px 20px; }
  .mg-lb-title { font-size: 36px; }
  .mg-lb-panel-mid { padding: 20px 24px; }
  .mg-lb-specs { grid-template-columns: repeat(4, 1fr); }
  .mg-lb-panel-bot { padding: 20px 24px 28px; }
  .mg-lb-nav { padding: 0 24px 16px; }
  .mg-lb-swatch-badge { bottom: 12px; left: 12px; padding: 8px 12px 8px 8px; }
  .mg-lb-swatch-img { width: 36px; height: 36px; }
}

@media (max-width: 380px) {
  .mg-inner { padding: 0 20px; }
  .mg-card { grid-template-columns: 100px 1fr; }
  .mg-card-name { font-size: 20px; }
  .mg-headline { font-size: 38px; }
  .mg-lb-specs { grid-template-columns: 1fr 1fr; }
}/* End custom CSS */