.elementor-734 .elementor-element.elementor-element-59c618f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-e0cefa8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-4d3ca58{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-34f2cfe{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-41fa65b{--display:flex;}.elementor-734 .elementor-element.elementor-element-34be460{--display:flex;}.elementor-734 .elementor-element.elementor-element-78764f1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-a2a8b0f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-91ba3d7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-734 .elementor-element.elementor-element-444695d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-1da8d95 *//* =========================================
   DESIGN SYSTEM: BEDROOM (Serene Luxury)
   ========================================= */

.oe-bedroom-dynamic {
    background-color: #080808; /* 近乎全黑 */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* 背景：微弱的星尘质感 */
.oe-bedroom-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(white 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.03; /* 非常淡的点阵 */
    pointer-events: none;
}

.oe-bedroom-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* 标题 */
.oe-bedroom-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    color: #E6D8C5; /* 珍珠白金 */
    margin-bottom: 15px;
}

.oe-bedroom-sub {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* 网格 (3列) */
.oe-bedroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* 卡片 */
.oe-bedroom-card {
    background: transparent;
    text-align: center; /* 卧室一般用居中对齐显得更稳重 */
}

/* 图片容器 */
.oe-bed-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    /* 卧室家具(床)通常较宽，使用 4:3 或 16:10 比例 */
    aspect-ratio: 4/3; 
    border: 1px solid #1a1a1a;
    border-radius: 2px;
}

.oe-bed-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85); /* 默认稍微暗一点，营造氛围 */
}

.oe-bedroom-card:hover .oe-bed-img-wrap img {
    transform: scale(1.06);
    filter: brightness(1.05); /* 悬停变亮 */
}

/* 悬停遮罩 */
.oe-bed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.oe-bed-overlay span {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.oe-bedroom-card:hover .oe-bed-overlay {
    opacity: 1;
}

/* 信息 */
.oe-bed-info {
    padding-top: 25px;
}

.oe-bed-cat {
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.oe-bed-title a {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.oe-bedroom-card:hover .oe-bed-title a {
    color: #D4AF37;
}

/* 底部简单链接 */
.oe-gold-link-btn {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.oe-gold-link-btn:hover {
    border-bottom-color: #D4AF37;
    color: #fff;
}

/* 响应式 */
@media (max-width: 900px) {
    .oe-bedroom-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
    .oe-bedroom-grid { grid-template-columns: 1fr; }
    .oe-bedroom-title { font-size: 36px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6f16cc8 */<style>
/* =========================================================
   CSS: Bedroom FAQ (Optimized Fullscreen)
   ========================================================= */

/* 1. 突破容器全屏 (修复 Elementor 限制) */
.oe-faq-fullscreen {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: radial-gradient(circle at 50% 15%, rgba(255,215,160,0.04) 0%, rgba(10,10,10,1) 65%), #151310;
  /* 关键：使用 dvh 适配手机浏览器地址栏 */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid rgba(197,164,126,0.08);
  border-bottom: 1px solid rgba(197,164,126,0.06);
}

/* 内部容器 (定宽居中) */
.oe-faq-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px; /* 防止手机端贴边 */
}

/* 2. 头部设计 */
.oe-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.oe-faq-title {
  font-family: 'Cormorant Garamond', serif;
  /* 智能缩放字体：手机34px -> 电脑52px */
  font-size: clamp(34px, 4.5vw, 52px);
  color: #e9ddc2;
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
}

.oe-faq-sub {
  font-family: 'Inter', sans-serif;
  color: #b9a98a;
  font-size: clamp(16px, 2vw, 18px);
  margin: 0;
  font-weight: 300;
}

.oe-faq-divider {
  width: 180px;
  height: 2px;
  margin: 30px auto 0;
  background: linear-gradient(to right, rgba(110,85,40,0), rgba(170,140,70,0.9), rgba(110,85,40,0));
}

/* 3. 网格布局 */
.oe-faq-grid {
  display: grid;
  /* 优化：最小宽度320px，适配各类手机 */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-bottom: 72px;
}

/* 4. 卡片样式 */
.oe-faq-item {
  background: rgba(40,35,28,0.82);
  border: 1px solid rgba(190,150,70,0.32);
  border-radius: 12px;
  padding: 36px 42px;
  box-shadow: 
    0 0 0 1px rgba(150,120,60,0.12), 
    0 12px 28px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* 等高 */
  display: flex;
  flex-direction: column;
}

.oe-faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #f0e7ce;
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.3;
}

.oe-faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #c2b59d;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1; /* 让文字撑满空间 */
}

/* 悬停微交互 */
.oe-faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(190,150,70,0.5);
}

/* 5. CTA 区域 */
.oe-faq-cta {
  text-align: center;
  padding: 56px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(50,40,30,0.4), rgba(30,25,18,0.9));
  border: 1px solid rgba(200,160,80,0.35);
  box-shadow: 0 20px 45px rgba(0,0,0,0.55);
  max-width: 900px;
  margin: 0 auto;
}

.oe-faq-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #ecdfc4;
  margin: 0 0 16px;
  font-weight: 600;
}

.oe-faq-cta p {
  font-family: 'Inter', sans-serif;
  color: #bbae90;
  font-size: clamp(16px, 2vw, 18px);
  margin: 0 auto 32px;
  max-width: 600px;
}

/* 按钮 */
.oe-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f2e9d2;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(210,180,110,0.45);
  background: linear-gradient(to bottom, #4a3f2b, #2b2418);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: all 0.3s ease;
}

.oe-faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  background: linear-gradient(to bottom, #5c4e36, #362d1f);
  border-color: rgba(210,180,110,0.8);
}

/* 6. 移动端适配 */
@media (max-width: 768px) {
  .oe-faq-fullscreen { padding: 80px 0; }
  .oe-faq-grid { gap: 24px; }
  .oe-faq-item { padding: 30px 24px; }
  .oe-faq-cta { padding: 40px 20px; }
  .oe-faq-btn { width: 100%; box-sizing: border-box; }
}
</style>/* End custom CSS */