/* FromOurPlaces 全局复刻样式（先用 tokens 占位，抓取后会更贴近官网） */

:root{
  /* 来自官网 tailwind tokens（data-theme=light）：更接近“米白 + 深棕字 + 陶土按钮” */
  --fop-bg: #fcfaf6; /* --twc-background-primary */
  --fop-bg-2: #f6f3eb; /* --twc-background-secondary */
  --fop-text: #35312e; /* --twc-primary */
  /* 官网“陶土/brick”体系 */
  --fop-accent: #af5a3c; /* --twc-special / bg-interactive-brick */
  --fop-accent-hover: #8c4830; /* hover:bg-interactive-brick-hover */
  --fop-accent-pressed: #693624; /* active:bg-interactive-brick-pressed */
  /* 兼容旧变量名 */
  --fop-accent-2: #af5a3c;
  --fop-border: rgba(30,26,22,0.12);
  --fop-radius: 28px;
  /* 官网更接近 1440 max container */
  --fop-container: 1440px;
}

/* Astra 全局颜色变量会在前台内联输出（常见：:root { --ast-global-color-5:#fff; }）。
   由于 Astra 可能把那段内联 CSS 放在我们样式之后，直接改 :root 可能被覆盖。
   这里改用“更近的继承源”（body/#page）来覆盖变量，稳定压过 :root。 */
body,
#page,
.site{
  --ast-global-color-5: var(--fop-bg);
  --e-global-color-astglobalcolor5: var(--fop-bg);
  /* Astra 常用的 subtle background */
  --ast-global-color-7: var(--fop-bg-2);
  --e-global-color-astglobalcolor7: var(--fop-bg-2);
}

/* 全站底色兜底：防止 Astra/Elementor 把 content 区域刷成纯白 */
html, body{
  background: var(--fop-bg) !important;
}
#page,
.site,
.site-content{
  background: transparent !important;
}
.elementor-page .site-content,
.ast-separate-container .site-content,
.ast-plain-container .site-content,
.ast-box-layout .site-content,
.ast-padded-layout .site-content{
  background: var(--fop-bg) !important;
}
.ast-separate-container .site-content,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single{
  background: transparent !important;
}

body{
  background: var(--fop-bg);
  color: var(--fop-text);
  font-family: Calibre, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Elementor Full Width（elementor_header_footer）在 Astra 下仍会包一层 .ast-container。
   为了让首页 Hero 的 full_width 真正吃满视口，需要把该页的 ast-container 放开。 */
.page-id-95.page-template-elementor_header_footer .site-content > .ast-container{
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 首页容器归一化已迁移到 Elementor 数据层（_elementor_data）：
   - boxed_width: 1440
   - padding: PC 40 / Pad 24 / Mobile 16
   - Hero content_width: full_width
   这里不再使用 page-id-95 的 CSS 兜底，避免与 Elementor 产生双重控制。 */

/* 顶部公告条（Astra Above Header + HTML components） */
.site-header .ast-above-header-bar{
  /* 官网：顶部深色 40px announcement bar */
  background: var(--fop-text);
  color: #fff;
  border-bottom: 0;
}
.fop-toplinks{
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
}
.fop-toplinks a{
  display: inline-flex;
  align-items: center;
  height: 20px;
  transform: translateY(-3px);
}
.fop-toplinks-right a{
  transform: translateY(-5px);
}
.fop-toplinks a{
  color: inherit;
  text-decoration: none;
}
.fop-toplinks a:hover{
  text-decoration: underline;
}
.fop-announcement{
  position: relative;
  display: block;
  text-align: center;
  font-size: 12px;
  min-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fop-announcement span{
  display: none;
  white-space: nowrap;
}
.fop-announcement span.is-active{
  display: inline;
}
.fop-announcement a{
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 922px){
  .site-header .ast-above-header-bar,
  .site-header .ast-above-header-bar .ast-builder-grid-row,
  .site-header .ast-above-header-bar .ast-builder-grid-row-container-inner{
    min-height: 40px;
    height: 40px;
    align-items: center;
  }
  /* 官网 desktop 左右 padding 约 48px */
  .site-header .ast-above-header-bar .ast-builder-grid-row-container-inner{
    padding-left: 48px;
    padding-right: 48px;
  }
  .fop-toplinks{
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
  }
  .fop-toplinks a{
    height: 20px;
    transform: translateY(-3px);
  }
  .fop-announcement{
    font-size: 16px;
    line-height: 17px; /* official line-height 17px */
    min-height: 20px;
    width: 400px; /* official slide width */
    margin-left: auto;
    margin-right: auto;
  }
  .fop-announcement span.is-active{
    display: inline-flex;
    align-items: center;
    height: 20px;
    transform: translateY(-4px);
  }
  .fop-announcement a{
    display: inline-flex;
    align-items: center;
    height: 20px;
    transform: translateY(-2px);
  }

  /* Secondary Menu（Astra above header）里的链接：强制白字与 16px 排版，贴近官网 */
  .site-header .ast-above-header-bar a,
  .site-header .ast-above-header-bar .menu-link{
    color: #fff !important;
    font-size: 16px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
    padding: 0 !important;
  }

  /* Above header 默认会套一层 ast-container（左右 20px），对齐官网 48px */
  .site-header .site-above-header-wrap.ast-container{
    padding-left: 48px !important;
    padding-right: 48px !important;
    max-width: 100% !important;
  }

  /* Topbar：保留 Astra builder 默认三段式列宽（更稳定），仅通过 fop-announcement 自身居中对齐 */
}

h1,h2,h3,h4,h5,h6{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
}

/* 容器宽度（与 Astra 的 container 叠加，避免冲突，偏向官网更宽的观感） */
.ast-container,
.site-content > .ast-container{
  max-width: var(--fop-container) !important;
}

/* Hero 全宽已迁移到 Elementor 数据层（Hero container content_width=full_width）。
   这里不再使用 100vw 的 CSS 逃逸兜底。 */

/* Button：陶土色、圆润胶囊 */
.elementor a.elementor-button,
button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  /* 官网 CTA 更接近 rounded（4px）+ tracking-widest + uppercase */
  border-radius: 4px !important;
  background: var(--fop-accent);
  color: #fff;
  border: 0;
  box-shadow: none;
  font-family: Calibre, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  height: 48px;
  line-height: 1;
  padding-left: 16px;
  padding-right: 16px;
}
.elementor a.elementor-button:hover,
button:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
  background: var(--fop-accent-hover);
  color: #fff;
}
.elementor a.elementor-button:active,
button:active,
.button:active,
.wp-block-button__link:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active{
  background: var(--fop-accent-pressed);
  color: #fff;
}

/* Header：顶部透明，滚动后白底（JS 会加 .fop-header-scrolled） */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: transparent;
}
body.fop-header-scrolled .site-header{
  background: rgba(247,242,237,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(30,26,22,0.06);
}

/* 三段式：左菜单/中logo/右图标（基于 Astra builder 的 grid，做轻覆盖） */
.site-header .ast-builder-grid-row-container-inner{
  align-items: center;
}

@media (min-width: 922px){
  /* 官网 header 本体约 65px（不含上方 40px announcement bar） */
  .site-header .ast-primary-header-bar{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 65px;
    height: 65px;
    background: #FCFAF6; /* official: rgb(252,250,246) */
    border-bottom: 1px solid #E6E6E6; /* official: rgb(230,230,230) */
    box-shadow: none !important;
  }
  .site-header .ast-primary-header-bar .ast-builder-grid-row,
  .site-header .ast-primary-header-bar .ast-builder-grid-row-container-inner{
    min-height: 65px;
    height: 65px;
    align-items: center;
  }
  /* Astra 默认会用较大的 header min-height，强制收敛到官网高度 */
  .site-header .ast-primary-header-bar,
  .site-header .ast-primary-header-bar .ast-builder-grid-row{
    max-height: 65px;
  }
  /* 官网 desktop 左右 padding 约 48px（Primary 区）：使用 ast-container 控制，避免 20px + 48px 叠加 */
  .site-header .site-primary-header-wrap.ast-container{
    padding-left: 48px !important;
    padding-right: 48px !important;
    max-width: 100% !important;
  }
  .site-header .ast-primary-header-bar .ast-builder-grid-row{
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  /* 官网布局：Logo 在左，主导航居中，右侧为图标（Astra 默认是 左=菜单 中=logo 右=图标） */
  .site-header .ast-primary-header-bar .ast-builder-grid-row{
    /* 250px: 让主导航起始 x≈48+250+20=318，贴近官网 */
    grid-template-columns: 250px minmax(0, 1fr) auto;
    column-gap: 20px;
    grid-template-rows: 65px !important;
    grid-auto-flow: column;
  }
  .site-header .site-header-primary-section-center{
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }
  .site-header .site-header-primary-section-left{
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
  }
  .site-header .site-header-primary-section-right{
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
  }
  .site-header .site-header-primary-section-left,
  .site-header .site-header-primary-section-center,
  .site-header .site-header-primary-section-right{
    height: 65px;
    align-self: stretch;
    align-items: center;
  }

  /* Logo 尺寸对齐官网（约 116×30） */
  .site-header .site-logo-img img.custom-logo{
    height: 30.125px;
    width: 116px;
    max-width: 116px;
  }
  .site-header .site-logo-img .custom-logo-link{
    width: 116px;
    height: 30.125px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5.25px; /* align logo y≈56.94 */
  }
  /* 顶级导航视觉：uppercase + tracking + 0 16px padding */
  .main-header-menu > .menu-item > .menu-link{
    display: inline-flex;
    align-items: center;
    height: 64px; /* official nav link height */
    padding: 0 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 27.2px;
    color: var(--fop-text);
    white-space: nowrap;
    font-family: Calibre, "Helvetica Neue", Helvetica, Arial, "Trebuchet MS", Verdana, sans-serif;
  }

  /* 官网顶级导航无下拉小箭头：隐藏 Astra 默认 dropdown toggle（避免文字区域被撑宽，导致像素差异） */
  .site-header-primary-section-left .main-header-menu > li.menu-item-has-children > a .dropdown-menu-toggle,
  .site-header-primary-section-left .main-header-menu > li.menu-item-has-children > a .ast-icon.icon-arrow,
  .site-header-primary-section-left .main-header-menu > li.menu-item-has-children > a svg.ast-arrow-svg{
    display: none !important;
  }

  /* 顶级菜单不要换行（避免把 COLLECTIONS/Sale 挤到第二行撑高 header） */
  .site-header-primary-section-left .main-header-menu{
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    justify-content: flex-start;
  }
}

/* Header 右侧图标（Search/Account/Cart）视觉清理：去掉价格/默认 svg，只保留我们自己的 mask 图标 */
@media (min-width: 922px){
  /* Cart：隐藏总价与默认 basket svg */
  .ast-site-header-cart .ast-woo-header-cart-info-wrap,
  .ast-site-header-cart .ast-woo-header-cart-total,
  .ast-site-header-cart .ast-addon-cart-wrap,
  .ast-site-header-cart .astra-icon.ast-icon-shopping-basket,
  .ast-site-header-cart .ast-icon.icon-basket{
    display: none !important;
  }

  /* Cart：只显示我们的 bag 图标 */
  .ast-site-header-cart .cart-container{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0 !important;
  }
  .ast-site-header-cart .fop-icon-bag{
    /* official svg bounds: 22×28 inside 32×32 button */
    width: 22px;
    height: 28px;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    display: block;
    transform: translateY(3px); /* align to official svg top≈58 */
  }

  /* Account：隐藏 Astra 默认 svg，用 mask 图标统一风格 */
  .ast-header-account-link .ahfb-svg-iconset,
  .ast-header-account-link svg{
    display: none !important;
  }
  .ast-header-account-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important;
    line-height: 0 !important;
  }
  .ast-header-account-link{
    line-height: 27.2px !important;
  }
  .ast-header-account-link::before{
    content: \"\";
    /* official svg bounds: 28×28 inside 32×32 button */
    width: 28px;
    height: 28px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-image: var(--fop-icon-account);
    mask-image: var(--fop-icon-account);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: translateY(-0.5px);
  }

  /* Right icons group：对齐官网（32×32 按钮 + 16px 间距） */
  .site-header-primary-section-right{
    gap: 16px;
  }
  .site-header-primary-section-right > .ast-builder-layout-element{
    margin: 0 !important;
  }
  /* Astra 的 builder element 默认宽度较大（50/54），会导致图标间距被“撑开”；
     这里把 wrapper 也收敛到 32×32，才能对齐官网的 x 位置与 16px gap。 */
  .site-header-primary-section-right .ast-header-search,
  .site-header-primary-section-right .ast-header-account,
  .site-header-primary-section-right .ast-header-woo-cart{
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transform: translateY(-0.5px); /* align icon buttons to official y=56 */
    line-height: 27.2px !important; /* match official icon row line-height */
  }
  .site-header-primary-section-right .ast-site-header-cart,
  .site-header-primary-section-right .ast-site-header-cart-li{
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Search：按钮 32×32（官网为 32×32） */
  .ast-header-search{
    /* official svg bounds: 24×24 inside 32×32 button */
    --fop-icon-size: 24px;
  }
  .ast-header-search .astra-search-icon{
    width: 32px !important;
    height: 32px !important;
  }
  .ast-header-search .astra-search-icon::before{
    width: 24px;
    height: 25px; /* official viewBox 24×25 */
    -webkit-mask-size: 100% 100% !important;
    mask-size: 100% 100% !important;
  }
}

/* 导航：超细下划线动画（官网风格） */
.main-header-menu .menu-link{
  position: relative;
  text-decoration: none;
}
.main-header-menu .menu-link:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: currentColor;
  transition: transform .22s ease;
  opacity: .9;
}
.main-header-menu .menu-item:hover > .menu-link:after,
.main-header-menu .menu-link:focus:after{
  transform: scaleX(1);
}

/* ===== Mega Menu（PC）：把 Cookware 下拉改成官网风格的多列面板 ===== */
@media (min-width: 922px){
  /* 仅对我们标记过的顶级菜单项生效 */
  /* 注意：不要无条件 display:grid（会把子菜单撑开导致 header 高度异常）。
     只在 hover/focus-within 时展示为 grid。 */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu{
    display: none;
  }
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega:hover > .sub-menu,
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega:focus-within > .sub-menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 26px 28px;
    min-width: 760px;
    background: rgba(245,241,233,0.98);
    border: 1px solid var(--fop-border);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(30,26,22,0.10);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
  }
  /* 一级列项（Featured / Categories） */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item{
    padding: 0;
    width: auto;
  }
  /* 标题（列标题） */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item.menu-item-heading > .menu-link{
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    pointer-events: none;
    padding: 0;
    margin: 0 0 10px 0;
  }
  /* 隐藏标题项的箭头 */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item.menu-item-heading > .ast-menu-toggle{
    display: none !important;
  }
  /* 二级链接列表（在每个列标题下面） */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item.menu-item-heading > .sub-menu{
    position: static;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    min-width: 0;
  }
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item.menu-item-heading > .sub-menu > .menu-item > .menu-link{
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.25;
    opacity: 0.95;
  }
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu > .menu-item.menu-item-heading > .sub-menu > .menu-item > .menu-link:hover{
    opacity: 1;
  }
  /* mega 面板里隐藏 Astra 默认的左侧小箭头图标（更接近官网简洁文本） */
  .ast-builder-menu-1 .main-header-menu > .menu-item.fop-mega > .sub-menu .ast-icon.icon-arrow{
    display: none !important;
  }
}

/* Header 图标组件：统一尺寸（后续用 SVG mask 覆盖） */
.ast-header-account,
.ast-header-woo-cart,
.ast-header-search{
  --fop-icon-size: 20px;
}

/* 通用：mask SVG 图标（来自 uploads/assets） */
.fop-header-svg{
  display: inline-block;
  width: var(--fop-icon-size);
  height: var(--fop-icon-size);
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
}
.fop-icon-bag{ -webkit-mask-image: var(--fop-icon-bag); mask-image: var(--fop-icon-bag); }
.fop-icon-search{ -webkit-mask-image: var(--fop-icon-search); mask-image: var(--fop-icon-search); }
.fop-icon-account{ -webkit-mask-image: var(--fop-icon-account); mask-image: var(--fop-icon-account); }

/* PC header icons：覆盖后置的默认 --fop-icon-size=20（保证与官网 svg bounds 一致） */
@media (min-width: 922px){
  .site-header-primary-section-right .ast-header-search{
    --fop-icon-size: 24px !important; /* official search svg: 24×24 */
  }
  .site-header-primary-section-right .ast-header-account{
    --fop-icon-size: 28px !important; /* official account svg: 28×28 */
  }
  .site-header-primary-section-right .ast-header-search .astra-search-icon::before,
  .site-header-primary-section-right .ast-header-account-wrap .ast-header-account-type-icon::before{
    -webkit-mask-size: 100% 100% !important;
    mask-size: 100% 100% !important;
  }
}

/* Search：隐藏 Astra 默认 svg，用伪元素替换 */
.ast-header-search .astra-search-icon svg,
.ast-header-search .astra-search-icon i{
  display: none !important;
}
.ast-header-search .astra-search-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--fop-icon-size) + 10px);
  height: calc(var(--fop-icon-size) + 10px);
}
.ast-header-search .astra-search-icon{
  /* 默认情况下沿用 calc(...)，但 PC 需要严格对齐官网 32×32 */
}
@media (min-width: 922px){
  .ast-header-search{
    --fop-icon-size: 22px;
  }
  .ast-header-search .astra-search-icon{
    width: 32px !important;
    height: 32px !important;
  }
}
.ast-header-search .astra-search-icon::before{
  content: "";
  display: inline-block;
  width: var(--fop-icon-size);
  height: var(--fop-icon-size);
  background-color: currentColor;
  -webkit-mask-image: var(--fop-icon-search);
  mask-image: var(--fop-icon-search);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Account：隐藏 Astra 默认 svg，用伪元素替换（避免影响下拉菜单，仅作用于 icon 容器） */
.ast-header-account-wrap .ast-header-account-type-icon .ahfb-svg-iconset svg{
  display: none !important;
}
.ast-header-account-wrap .ast-header-account-type-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--fop-icon-size) + 10px);
  height: calc(var(--fop-icon-size) + 10px);
}
.ast-header-account-wrap .ast-header-account-type-icon::before{
  content: "";
  display: inline-block;
  width: var(--fop-icon-size);
  height: var(--fop-icon-size);
  background-color: currentColor;
  -webkit-mask-image: var(--fop-icon-account);
  mask-image: var(--fop-icon-account);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Cart：我们输出的 span 在 a.cart-container 内，确保和计数对齐 */
.ast-header-woo-cart .cart-container{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Elementor 首页模块：轻量默认排版（后续可继续精调到 1:1） */
.fop-hero{
  border-radius: 24px;
  overflow: hidden;
}
.fop-hero__inner{
  /* Hero 必须 full-bleed：不要继承全局 container 限制 */
  max-width: none;
  width: 100%;
}
.fop-section{
  padding-left: 20px;
  padding-right: 20px;
}
.fop-section.fop-hero{
  padding-left: 0;
  padding-right: 0;
}
.fop-best__grid .fop-card{
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}
.fop-cats__grid .fop-cat{
  flex: 1 1 calc(50% - 18px);
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.fop-banner__inner{
  align-items: center;
}
.fop-banner__media{
  flex: 0 0 48%;
}
.fop-banner__copy{
  flex: 1 1 auto;
}
.fop-ig__grid .fop-ig__img{
  flex: 1 1 calc(33.333% - 14px);
  min-width: 220px;
}

/* ===== 新首页结构（Hero / Tiles / Carousels / Duo / Press / Happening）===== */

/* HERO：文字区留白更接近官网 */
.fop-hero{
  margin: 0;
}
.fop-hero__wrap{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  height: 500px;
  width: 100%;
}
/* 修复：部分环境下 Elementor HTML 小工具作为 flex item 会被收缩到 width=0，导致 Hero “有高度但看起来空白” */
.fop-hero .elementor-widget-html,
.fop-hero .elementor-widget-html > .elementor-widget-container,
.fop-hero__wrap{
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
}
.fop-hero .elementor-widget-html{
  flex: 0 0 100% !important;
  align-self: stretch !important;
}
@media (min-width: 922px){
  /* 官网桌面 Hero 基本是无圆角全宽 */
  .fop-hero__wrap{ border-radius: 0; }
}
.fop-hero__wrap::after{
  /* 官网：文字区更“稳”，左侧有更强的遮罩，整体更大气 */
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,0) 72%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
}
.page-id-95 .fop-hero__wrap::after{
  background: none;
}
.fop-hero__media{
  position: absolute;
  inset: 0;
}
.fop-hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 922px){
  .page-id-95 .fop-hero__media{
    background-image: none;
    background-size: auto;
    background-position: center;
  }
  .page-id-95 .fop-hero__video{
    opacity: 1;
  }
}
@media (max-width: 921px){
  .page-id-95 .fop-hero{
    margin-top: -14px;
  }
  .page-id-95 .fop-hero__wrap{
    height: 74vh;
    min-height: 919px;
  }
  .page-id-95 .fop-hero__media{
    background-image: none;
    background-size: auto;
    background-position: center;
  }
  .page-id-95 .fop-hero__video{
    opacity: 1;
  }
}
@media (max-width: 544px){
  body.page-id-95{
    padding-top: 0;
  }
  .site-header{
    margin-top: 40px;
  }
  .fop-mobile-announcement{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--fop-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    z-index: 50;
  }
  .site-header .ast-above-header-bar{
    display: block !important;
    height: 40px;
  }
  .ast-above-header-wrap,
  .ast-above-header{
    display: block !important;
    width: 100% !important;
    height: 40px !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
  }
  .site-header .ast-above-header-bar .ast-container{
    width: 100%;
    max-width: 100%;
  }
  .fop-announcement{
    min-height: 40px;
    line-height: 40px;
  }
  .page-id-95 .fop-hero__overlay{
    padding: 92px 16px 0 !important;
  }
  .page-id-95 .fop-hero__sub{
    font-size: 20px !important;
    line-height: 26px !important;
    margin-top: 32px !important;
    width: 358px;
    max-width: 358px;
  }
  .page-id-95 .fop-hero__title{
    margin-top: 0;
    position: static;
    top: auto;
    width: 358px;
    max-width: 358px;
  }
  .page-id-95 .fop-hero__cta{
    margin-top: 24px !important;
  }
  .page-id-95 .fop-hero__cta{
    font-size: 16px !important;
  }
  .page-id-95 .fop-hero{
    margin-top: -14px;
  }
  .page-id-95 .fop-hero__wrap{
    height: 56vh;
    min-height: 450px;
  }
  .page-id-95 .fop-hero__media{
    background-image: url("/wp-content/uploads/2026/01/hero_iphone_frame.png");
  }
  .page-id-95 .fop-tiles{
    margin-top: 12px;
  }
  .fop-hero__promo{
    min-height: 58px !important;
    height: 58px !important;
  }
  .fop-hero__promo a{
    padding: 8px 24px;
  }
  .fop-cookie-note{
    left: 20px !important;
    right: 55px !important;
    bottom: -22px !important;
    width: 315px !important;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    background: rgb(235, 229, 213);
    z-index: 100;
  }
  .fop-cookie-settings{
    margin-top: auto;
    align-self: center;
    font-size: 12px;
    line-height: 18px;
    text-decoration: underline;
  }
}
.fop-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 48px 16px;
  color: #fff;
}
.fop-hero__overlay > *{
  max-width: 620px;
}
@media (min-width: 922px){
  .fop-hero__overlay{
    align-items: flex-start;
    text-align: left;
    padding: 48px 48px;
  }
}
.fop-hero__promo{
  margin-top: 0;
  min-height: 66px;
  height: 66px;
  flex: 0 0 66px;
  align-self: stretch;
  background: rgb(108, 103, 77);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fop-hero__promo a{
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 34px;
  padding: 16px 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fop-hero__promo a:hover{
  text-decoration: underline;
}
.fop-cookie-note{
  position: fixed;
  left: 32px;
  right: 32px;
  bottom: 18px;
  z-index: 30;
  font-size: 12px;
  line-height: 18px;
  color: #696969;
  pointer-events: auto;
}
.fop-cookie-note a{
  color: inherit;
  text-decoration: underline;
}
.fop-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 56px 16px 0;
  color: #fff;
}
.fop-hero,
.fop-hero *{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fop-hero .elementor-heading-title,
.fop-hero .fop-hero__kicker,
.fop-hero .fop-hero__title,
.fop-hero .fop-hero__sub{
  color: #fff !important;
}
.fop-hero__overlay > *{
  max-width: 680px;
}
.fop-hero__kicker{
  margin: 0 0 12px;
  font-size: 12px;
  /* 官网 tracking-widest = 0.08em */
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .95;
}
.fop-hero__title{
  margin: 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.1; /* leading-tight */
  font-weight: 300; /* font-light */
}
.fop-hero__sub{
  margin: 16px 0 0;
  font-family: Calibre, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  opacity: .92;
}
.fop-hero__cta{
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--fop-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background-color .15s ease, transform .15s ease;
}
.fop-hero__cta:hover{ background: var(--fop-accent-hover); }
.fop-hero__cta:active{ background: var(--fop-accent-pressed); transform: translateY(1px); }

@media (min-width: 922px){
  .fop-hero__wrap{
    height: 68vh;
    min-height: 550px;
  }
  .fop-hero__overlay{
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding: 30px 48px;
  }
  .fop-hero__kicker{ font-size: 12px; }
  /* 官网：md:text-8xl=60px；大屏略放大 */
  .fop-hero__title{ font-size: 60px; line-height: 1.1; max-width: 676px; width: 676px; }
  .fop-hero__sub{ font-size: 28px; line-height: 36.4px; max-width: 676px; }
  .fop-hero__cta{ min-width: 184px; height: 48px; }
}

@media (min-width: 1280px){
  .fop-hero__title{ font-size: 60px; }
}

/* Hero CTA：按官网（rounded 4px + tracking-widest + uppercase） */
.fop-hero__cta{
  border-radius: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  height: 48px;
  padding: 0 16px;
}
.fop-hero__inner{
  /* legacy (旧 hero 用)，保留不删，避免回退时报错 */
  padding: 40px 20px;
}
/* legacy 选择器收敛：避免影响“视频 hero”版本 */
@media (min-width: 922px){
  .fop-hero__inner{
    padding: 64px 0;
  }
}
.fop-hero__inner .fop-hero__title{
  max-width: 620px;
}
.fop-hero__inner .fop-hero__sub{
  max-width: 520px;
  font-size: 16px;
  opacity: .92;
}
@media (min-width: 922px){
  /* Hero 文案已由 JS 同步，不再用伪元素覆盖，避免重复渲染导致重叠 */
  .page-id-95 .fop-hero__title,
  .page-id-95 .fop-hero__sub{
    color: #fff !important;
    position: static;
  }
  .page-id-95 .fop-hero__title::after,
  .page-id-95 .fop-hero__sub::after{
    content: none !important;
  }
}
.fop-hero__inner .fop-hero__cta{
  margin-top: 10px;
}

/* Hero 文案去重兜底：阻断任何伪元素或滤镜导致的重影 */
.page-id-95 .fop-hero__title::before,
.page-id-95 .fop-hero__title::after,
.page-id-95 .fop-hero__sub::before,
.page-id-95 .fop-hero__sub::after,
.page-id-95 .fop-hero__cta::before,
.page-id-95 .fop-hero__cta::after{
  content: none !important;
}
.page-id-95 .fop-hero__overlay,
.page-id-95 .fop-hero__overlay *{
  text-shadow: none !important;
  filter: none !important;
}

/* Category Tiles (4-up) */
.fop-tiles{
  /* 官网更“空气感”：更大的上下留白 */
  margin: 0 0 42px;
}
.fop-tiles__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}
@media (min-width: 922px){
  .page-id-95 .fop-tiles__grid{
    width: 1392px;
    max-width: 1392px;
    margin-left: 4px;
    margin-right: 4px;
    gap: 0;
    grid-template-columns: repeat(4, 348px);
  }
  .page-id-95 .fop-tile__media{
    width: 300px;
    height: 225px;
  }
  .page-id-95 .fop-tile{
    width: 348px;
    height: 288px;
    padding: 0 24px;
    gap: 12px;
    justify-content: flex-start;
  }
  .page-id-95 .fop-tile__label{
    font-size: 16px;
    line-height: 27.2px;
  }
}
.fop-tile{
  /* 官网：上图下标题（不做标题压图） */
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 22px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  color: var(--fop-text);
  text-decoration: none;
}
.fop-tile__media{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* 官网卡片图更接近 4:3（比 16:9 更“厚实”） */
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.55);
  border: 0;
}
.fop-tile--cookware .fop-tile__media::before{
  /* 官网 Cookware 有 NEW 徽标（视觉更贴近图1） */
  content:"NEW";
  position:absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  height: 22px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #2347ff;
  color: #fff;
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.page-id-95 .fop-tile--cookware .fop-tile__media::before{
  content: none;
}
.fop-tile__media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fop-tile__media img{
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .4s ease;
}
.fop-tile__label{
  position: static;
  z-index: 1;
  font-family: Chelt, Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fop-text);
}
.fop-tile:hover .fop-tile__media img{
  transform: scale(1.06);
}
/* Tiles：桌面 4 列，Pad/手机降级 */
@media (max-width: 1024px){
  .fop-tiles__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fop-tiles{ margin: 44px 0 34px; }
  .fop-tiles__grid{ gap: 26px; }
  .fop-tile__label{ font-size: 28px; }
}
@media (max-width: 544px){
  .fop-tiles__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .fop-tiles{ margin: 34px 0 26px; }
  .fop-tile{ gap: 12px; }
  .fop-tile__label{ font-size: 22px; }
  .fop-tile--cookware .fop-tile__media::before{
    left: 10px;
    top: 10px;
    height: 20px;
    font-size: 11px;
  }
}

/* Carousel base */
.fop-carousel{
  position: relative;
  margin-top: 14px;
}
.fop-carousel__track{
  display: grid;
  grid-auto-flow: column;
  /* 官网：mobile ~213px，desktop ~448px */
  grid-auto-columns: 213px;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fop-carousel__track.is-dragging{
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}
@media (min-width: 768px){
  .fop-carousel__track{ grid-auto-columns: 320px; }
}
@media (min-width: 922px){
  .fop-carousel__track{ grid-auto-columns: 448px; }
}
.fop-carousel__track::-webkit-scrollbar{ display:none; }
.fop-carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--fop-border);
  background: rgba(247,242,237,0.92);
  backdrop-filter: blur(10px);
  color: var(--fop-text);
  cursor: pointer;
  z-index: 5;
}
.fop-carousel__btn.is-disabled,
.fop-carousel__btn[aria-disabled="true"]{
  opacity: .35;
  cursor: default;
}
/* 兜底：即便某处把按钮设为 disabled，也不要让箭头“消失” */
.fop-carousel__btn:disabled{
  opacity: .35;
  color: var(--fop-text) !important;
}
.fop-carousel__btn--prev{ left: 8px; }
.fop-carousel__btn--next{ right: 8px; }
/* 箭头：用伪元素绘制（配合 JS 不使用 disabled，避免箭头变空白） */
.fop-carousel__btn::before{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
}
.fop-carousel__btn--next::before{
  transform: rotate(-45deg);
}
/* 官网在移动端也显示箭头（缩小一点，避免遮挡） */
@media (max-width: 921px){
  .fop-carousel__btn{
    width: 38px;
    height: 38px;
    background: rgba(247,242,237,0.86);
  }
}

/* Footer：深色底 + 浅色字（解决“看不清/没区分”） */
.site-footer{
  /* 官网更接近“蓝灰底”而非纯黑 */
  background: #5f6f72;
  color: rgba(247,242,237,0.92);
  border-top: 1px solid rgba(247,242,237,0.18);
}
.site-footer a{ color: rgba(247,242,237,0.92); }
.site-footer a:hover{ color: #fff; }
.site-primary-footer-wrap{
  background: transparent;
  border-top: 1px solid rgba(247,242,237,0.18);
}
.fop-footer-top{
  border-top: 1px solid rgba(247,242,237,0.18);
}
.fop-newsletter-form input{
  background: rgba(255,255,255,0.94);
  color: #1d1b19;
  border: 1px solid rgba(255,255,255,0.22);
}
.fop-newsletter-form input::placeholder{
  color: rgba(29,27,25,0.55);
}
.fop-footer-col h4{
  color: rgba(247,242,237,0.92);
}
.fop-footer-col a{
  color: rgba(247,242,237,0.78);
}
.fop-footer-col a:hover{
  color: #fff;
  text-decoration: underline;
}

/* Product Card */
.fop-product-card{
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--fop-text);
}
.fop-product-card__media{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  background: var(--fop-bg-2);
  aspect-ratio: 1 / 1;
}
.fop-product-card__media img{
  width: 88%;
  height: 88%;
  object-fit: contain;
}
.fop-product-card__badge{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 6px;
  background: #201d1c;
  color: #fff;
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fop-product-card__body{
  display: grid;
  gap: 8px;
}
.fop-product-card__name{
  font-family: Chelt, Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--fop-text);
}
.fop-product-card__pieces{
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  opacity: .85;
}
.fop-product-card__desc{
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(53,49,46,0.78);
}
.fop-product-card__price-row{
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fop-product-card__price{
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--fop-accent);
}
.fop-product-card__msrp{
  font-family: Calibre, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(53,49,46,0.72);
}
.fop-product-card__swatches{
  display: flex;
  gap: 10px;
  padding-top: 2px;
}
.fop-swatch{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--sw, #ddd);
  border: 1px solid rgba(53,49,46,0.25);
}

/* Bestsellers：更接近官网（箭头在标题右侧，卡片间距更大） */
.fop-bestsellers{
  position: relative;
}
.fop-bestsellers .fop-carousel{
  margin-top: 26px;
}
.fop-bestsellers .fop-carousel__track{
  gap: 32px;
  padding-top: 8px;
  padding-bottom: 12px;
}
.fop-bestsellers .fop-carousel__btn{
  top: -66px;
  transform: none;
  width: 46px;
  height: 46px;
  background: transparent;
  backdrop-filter: none;
  border: 1px solid rgba(53,49,46,0.55);
  /* 兜底：无论主题/浏览器如何处理 focus/active/disabled，都保持箭头可见 */
  color: var(--fop-text) !important;
  opacity: 1;
}
.fop-bestsellers .fop-carousel__btn:focus,
.fop-bestsellers .fop-carousel__btn:active{
  color: var(--fop-text) !important;
}
.fop-bestsellers .fop-carousel__btn.is-disabled,
.fop-bestsellers .fop-carousel__btn[aria-disabled="true"],
.fop-bestsellers .fop-carousel__btn:disabled{
  /* 不用 opacity 打淡（会让伪元素“看不见”），直接用更浅的颜色 */
  opacity: 1 !important;
  color: rgba(53,49,46,0.35) !important;
  border-color: rgba(53,49,46,0.28) !important;
}
.fop-bestsellers .fop-carousel__btn--prev{
  left: auto;
  right: 60px;
}
.fop-bestsellers .fop-carousel__btn--next{
  right: 0;
}
.fop-bestsellers .fop-carousel__btn::before{
  width: 12px;
  height: 12px;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

/* Review Card */
.fop-review-card{
  scroll-snap-align: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--fop-border);
  background: rgba(255,255,255,0.55);
}
.fop-review-card__stars{
  letter-spacing: 0.12em;
  font-size: 14px;
  margin-bottom: 10px;
}
.fop-review-card__quote{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* ===== Reviews (官网下一模块)：左侧大文案 + 右侧媒体卡片轮播 ===== */
.fop-reviews2{ margin: 56px 0 0; }
.fop-carousel--reviews2{
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.fop-carousel--reviews2 .fop-reviews2__left{
  max-width: 520px;
}
.fop-reviews2__stars{
  letter-spacing: 0.12em;
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--fop-accent);
}
.fop-reviews2__headline{
  margin: 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-size: 44px;
  color: var(--fop-text);
}
.fop-reviews2__nav{
  margin-top: 28px;
  display: inline-flex;
  gap: 14px;
}
.fop-carousel--reviews2 .fop-carousel__btn{
  position: static;
  transform: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  border: 1px solid rgba(53,49,46,0.45);
  color: var(--fop-text);
}
.fop-carousel--reviews2 .fop-carousel__track{
  /* 右侧卡片轨道：显示更接近官网 splide */
  grid-auto-columns: 328px;
  gap: 22px;
  padding: 6px 2px 10px;
}
@media (min-width: 768px){
  .fop-carousel--reviews2 .fop-carousel__track{ grid-auto-columns: 648px; gap: 28px; }
}
@media (min-width: 922px){
  .fop-carousel--reviews2{ flex-direction: row; align-items: flex-start; gap: 56px; }
  .fop-carousel--reviews2 .fop-reviews2__left{ flex: 0 0 420px; }
  .fop-reviews2__headline{ font-size: 56px; }
}

.fop-reviews2__card{
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
.fop-reviews2__media-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fop-reviews2__media{
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  aspect-ratio: 1 / 1;
}
.fop-reviews2__media--img{ aspect-ratio: 1 / 1; }
.fop-reviews2__media--video{ aspect-ratio: 1 / 1; }
.fop-reviews2__media img,
.fop-reviews2__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 922px){
  .fop-reviews2__media-row{
    grid-template-columns: 300px 325px;
    gap: 23px;
    align-items: end;
  }
  .fop-reviews2__card{
    position: relative;
    grid-template-rows: 492px;
    height: 533px;
  }
  .fop-reviews2__body{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .page-id-95 .fop-reviews2__body{
    max-width: 300px;
    padding-bottom: 11px;
  }
  .fop-reviews2__chips{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .fop-reviews2__title{
    font-size: 34px;
    line-height: 39px;
  }
  .fop-reviews2__quote{
    font-size: 18px;
    line-height: 28px;
    margin-top: 8px;
  }
  .fop-reviews2__author{
    font-size: 13px;
    line-height: 20px;
    margin-top: 8px;
  }
  .fop-reviews2__media{
    aspect-ratio: auto;
  }
  .fop-reviews2__media--img{
    width: 300px;
    height: 284px;
  }
  .fop-reviews2__media--video{
    width: 325px;
    height: 492px;
  }
}
@media (min-width: 922px){
  .page-id-95 .fop-reviews2__card{
    grid-template-rows: auto auto;
    height: auto;
  }
  .page-id-95 .fop-reviews2__body{
    position: static;
    max-width: none;
    padding-top: 12px;
    padding-bottom: 0;
  }
}
.fop-reviews2__body{ padding: 0 2px; }
.fop-reviews2__chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.fop-reviews2__chip{
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(53,49,46,0.10);
  border: 1px solid rgba(53,49,46,0.18);
  color: rgba(53,49,46,0.9);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.fop-reviews2__title{
  margin: 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  color: var(--fop-text);
}
.fop-reviews2__quote{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(53,49,46,0.86);
}
.fop-reviews2__author{
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(53,49,46,0.72);
}
@media (min-width: 922px){
  .page-id-95 .fop-reviews2__chips{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .page-id-95 .fop-reviews2__title{
    font-size: 34px;
    line-height: 39px;
  }
  .page-id-95 .fop-reviews2__quote{
    font-size: 20px;
    line-height: 26px;
    margin-top: 8px;
  }
  .page-id-95 .fop-reviews2__author{
    font-size: 13px;
    line-height: 20px;
    margin-top: 8px;
  }
}
.fop-review-card__attr{
  font-size: 13px;
  opacity: .8;
}

/* Duo cards (官网截图模块)：上图 + 下文案 + 描边按钮 */
.fop-duo2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.fop-duo2__card{
  display: grid;
  gap: 18px;
}
.fop-duo2__media{
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
}
.fop-duo2__media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 648 / 550;
  object-fit: cover;
}
.fop-duo2__title{
  margin: 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--fop-text);
}
.fop-duo2__desc{
  margin: 10px 0 0;
  font-family: Calibre, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(53,49,46,0.86);
}
.fop-duo2__btn{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  min-width: 210px;
  border-radius: 4px;
  border: 2px solid rgba(53,49,46,0.75);
  color: var(--fop-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
}
.fop-duo2__btn:hover{ background: rgba(53,49,46,0.06); }
.fop-duo2__btn:active{ background: rgba(53,49,46,0.10); }
@media (max-width: 921px){
  .fop-duo2{ grid-template-columns: 1fr; gap: 28px; }
  .fop-duo2__title{ font-size: 28px; }
  .fop-duo2__media img{ aspect-ratio: 328 / 279; }
}

/* Press（官网：居中引号 + 5 个浅灰 logo） */
.fop-press2{
  text-align: center;
  padding: 34px 0 8px;
}
.fop-press2__quote{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 18px 0;
  color: rgba(53,49,46,0.85);
}
.fop-press2__logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.fop-press2__logos img{
  height: 34px;
  width: auto;
  filter: grayscale(100%);
  opacity: .35;
  transition: opacity .2s ease;
}
.fop-press2__logos img:hover{ opacity: .55; }
@media (max-width: 921px){
  .fop-press2__logos{ gap: 22px; }
  .fop-press2__logos img{ height: 28px; }
}

/* Bestsellers/Reviews/Duo（块高补齐到官网） */
.page-id-95 .fop-section.fop-bestsellers{
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}
.page-id-95 .fop-section.fop-reviews2{
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  margin-top: 128px !important;
  display: flow-root;
}
.page-id-95 .fop-section.fop-duo-cards{
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Press（块高补齐到官网） */
.page-id-95 .fop-section.fop-press{
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Happening cards（官网：圆形图片 + 文案 + 右上圆形箭头） */
.page-id-95 .fop-section.fop-happening{
  /* 拉开上下留白：更接近官网 PC 的“大气感” */
  padding-top: 160px !important;
  padding-bottom: 178px !important;
}
.page-id-95 .fop-section.fop-happening > .e-con-inner{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.fop-happening2__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 26px;
}
.fop-happening2__title{
  margin: 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  /* 官网 PC/Pad：48px，字重更轻 */
  font-size: 48px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: normal;
  color: #35312E;
}
.fop-happening2__nav{
  display: inline-flex;
  gap: 14px;
}
.fop-happening2__nav .fop-carousel__btn{
  position: static;
  transform: none;
  width: 54px !important;
  height: 54px !important;
  border-radius: 999px !important;
  background: transparent !important;
  backdrop-filter: none;
  border: 1px solid rgba(53,49,46,0.35) !important;
  color: rgba(53,49,46,0.85) !important;
  cursor: pointer;
  pointer-events: auto;
}
.fop-happening2__nav .fop-carousel__btn:focus,
.fop-happening2__nav .fop-carousel__btn:active{
  color: rgba(53,49,46,0.85) !important;
}
.fop-happening2__nav .fop-carousel__btn.is-disabled,
.fop-happening2__nav .fop-carousel__btn[aria-disabled="true"],
.fop-happening2__nav .fop-carousel__btn:disabled{
  opacity: 1 !important;
  color: rgba(53,49,46,0.35) !important;
  border-color: rgba(53,49,46,0.22) !important;
  cursor: default;
}
.fop-carousel--happening2 .fop-carousel__track{
  /* 更接近官网：大圆图一屏多张 */
  grid-auto-columns: 210px;
  gap: 48px;
  padding: 12px 2px 18px;
}
@media (min-width: 922px){
  .fop-carousel--happening2 .fop-carousel__track{ grid-auto-columns: 268px; }
}
@media (min-width: 1200px){
  .fop-carousel--happening2 .fop-carousel__track{ grid-auto-columns: 284px; }
}
.fop-happening-card{
  scroll-snap-align: start;
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: var(--fop-text);
}
.fop-happening-card__media{
  display:block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--fop-border);
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.55);
}
.fop-happening-card__media--circle{
  border-radius: 999px;
  border: 0;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.0);
}
.fop-happening-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fop-happening-card__title{
  font-size: 19px;
  font-weight: 500;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.1;
}
.fop-happening-card--circle .fop-happening-card__title{
  text-align: center;
}

/* Footer：先做基础留白/对比度（后续可根据官网再精调） */
/* fromourplace.com 风格 Footer（尽量走 Astra Builder + Widgets） */
.site-footer{
  border-top: 0;
}

/* Primary footer background/text */
.site-primary-footer-wrap[data-section="section-primary-footer-builder"]{
  color: #fff;
}
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] a:hover{
  color: rgba(255,255,255,1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Left: Keep in touch (custom_html widget) */
.site-primary-footer-wrap .widget-title{
  margin: 0 0 18px 0;
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  /* 官网 PC：Keep in touch 更大、更轻 */
  font-size: 48px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  color: #FCFAF6;
}
/* Astra 会给 footer-widget-1 标题强制白色，这里按官网改成暖白 */
.footer-widget-area[data-section="sidebar-widgets-footer-widget-1"] .widget-title{
  color: #FCFAF6 !important;
}
.fop-footer-form{ max-width: 320px; }
.fop-footer-form__row{
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  align-items: center;
}
.fop-footer-form input{
  width: 100%;
  height: 44px;
  border-radius: 4px;
  border: 0;
  padding: 0 14px;
  background: #fff;
  color: #111;
}
.fop-footer-form button{
  width: 48px;
  height: 44px;
  border-radius: 4px;
  border: 0;
  background: #fff;
  color: #111;
  font-weight: 700;
}
.fop-footer-fineprint{
  margin: 12px 0 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,0.82);
}
.fop-footer-fineprint a{ color: rgba(255,255,255,0.9); text-decoration: underline; }
.fop-footer-social{
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.fop-footer-social__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: .06em;
}

/* Right: 4-column menu grid inside footer-widget-2 */
.site-primary-footer-wrap .footer-widget-area.widget-area{
  width: 100%;
}
.site-primary-footer-wrap .footer-widget-area.widget-area#secondary{
  /* no-op */
}
.site-primary-footer-wrap .widget_nav_menu .widget-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.site-primary-footer-wrap .widget_nav_menu ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.site-primary-footer-wrap .widget_nav_menu li{ margin: 0; }
.site-primary-footer-wrap .widget_nav_menu a{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* 把 footer-widget-2 内的多个 widget 排成 4 列 */
.site-primary-footer-wrap .footer-widget-area[data-section*="widget-2"],
.site-primary-footer-wrap .footer-widget-area.ast-footer-widget-2,
.site-primary-footer-wrap .ast-footer-widget-2{
  /* 某些 Astra 版本 class 不一致，统一兜底 */
}
@media (min-width: 922px){
  .site-primary-footer-wrap .footer-widget-area .widget-area,
  .site-primary-footer-wrap .footer-widget-area{
    /* keep */
  }
  .site-primary-footer-wrap .ast-builder-grid-row > .site-footer-section:nth-child(2) .ast-builder-layout-element,
  .site-primary-footer-wrap .ast-builder-grid-row > .site-footer-section:nth-child(2){
    /* keep */
  }
  /* 右列：把 sidebar footer-widget-2 的 widgets 用 CSS grid 变成 4 列 */
  .site-primary-footer-wrap .site-footer-section:last-child .footer-widget-area .widget{
    margin: 0;
  }
  .site-primary-footer-wrap .site-footer-section:last-child .footer-widget-area{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    align-items: start;
  }
}

/* Below footer (legal bar) */
.site-below-footer-wrap[data-section="section-below-footer-builder"]{
  color: rgba(255,255,255,0.75);
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] a{
  color: rgba(255,255,255,0.75);
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] a:hover{
  color: rgba(255,255,255,1);
}

/* =========================
   Footer 单页（政策/帮助页）排版复刻
   作用域：仅加了 body.fop-footer-page 的页面
   ========================= */
body.fop-footer-page{
  background: #F8F6F3;
}
body.fop-footer-page .site-content{
  background: transparent;
}
body.fop-footer-page .ast-container{
  /* 官网 main 通常铺满视口；具体内容宽度由内层控制 */
  max-width: 1440px;
}
body.fop-footer-page .site-content .ast-container{
  padding-top: 56px;
  padding-bottom: 80px;
}
/* 这些页面正文里已经包含官网的 H1；隐藏 Astra 默认 entry header，避免重复标题/字号对比错误 */
body.fop-footer-page .entry-header{
  display: none;
}
body.fop-footer-page .entry-content{
  font-family: Inter, "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #35312E;
  font-size: 16px;
  /* 官网正文行高更松（16px -> 27.2px） */
  line-height: 1.7;
}
/* 官网正文是“居中宽内容区”；这里用 fop-legal-page 包一层来控宽 */
body.fop-footer-page .fop-legal-page{
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
}
body.fop-footer-page .entry-title{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: #35312E;
  letter-spacing: normal;
  line-height: 1.05;
  margin: 0 0 18px 0;
}
body.fop-footer-page .entry-content h1{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  /* 官网 PC/Pad：60px / 400 */
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  margin: 0 0 18px 0;
  color: #35312E;
}
body.fop-footer-page .entry-content h2{
  font-family: Inter, "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 28px 0 12px;
  color: #35312E;
}
body.fop-footer-page .entry-content h3{
  font-family: Inter, "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* 官网 warranty 等页面把 h3 当作大段落标题（约 36px/400） */
  font-weight: 400;
  font-size: 36px;
  line-height: 1.7;
  margin: 26px 0 14px;
  color: #35312E;
}
body.fop-footer-page .entry-content p{
  margin: 0 0 14px 0;
}
body.fop-footer-page .entry-content a{
  color: #35312E;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
body.fop-footer-page .entry-content a:hover{
  color: #D37556;
}
body.fop-footer-page .entry-content ul,
body.fop-footer-page .entry-content ol{
  margin: 0 0 16px 1.15em;
  padding: 0;
}
body.fop-footer-page .entry-content li{
  margin: 0 0 8px 0;
}
body.fop-footer-page .entry-content hr{
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 28px 0;
}
body.fop-footer-page .entry-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.55);
}
body.fop-footer-page .entry-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
}
body.fop-footer-page .entry-content th,
body.fop-footer-page .entry-content td{
  border: 1px solid rgba(0,0,0,0.10);
  padding: 10px 12px;
  vertical-align: top;
}
body.fop-footer-page .entry-content th{
  font-weight: 600;
  background: rgba(0,0,0,0.03);
}

@media (max-width: 921px){
  body.fop-footer-page .site-content .ast-container{
    padding-top: 44px;
    padding-bottom: 64px;
  }
  body.fop-footer-page .entry-content h1{ font-size: 60px; }
}
@media (max-width: 544px){
  body.fop-footer-page .site-content .ast-container{
    padding-top: 36px;
    padding-bottom: 54px;
  }
  /* 官网 iPhone：42px / 400 */
  body.fop-footer-page .entry-content h1{ font-size: 42px; font-weight: 400; line-height: 1; }
  body.fop-footer-page .entry-content h2{ font-size: 17px; }
  /* 官网 iPhone：warranty 等页面 h3 ≈ 24px/400 */
  body.fop-footer-page .entry-content h3{ font-size: 24px; font-weight: 400; line-height: 1.7; }
}

/* =========================
   Footer 单页：逐页对齐（非“法律排版”页面）
   通过 functions.php 注入的 body class：fop-footer-page--{slug}
   ========================= */

/* ---------- 深色 hero 类页面：financing / reviews / gifts ---------- */
body.fop-footer-page--type-hero{
  background: #3F4F58;
}
body.fop-footer-page--type-hero .site-content{
  background: transparent;
}
body.fop-footer-page--type-hero .site-content .ast-container{
  padding-top: 0;
  padding-bottom: 0;
}
body.fop-footer-page--type-hero .fop-legal-page{
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 24px 110px;
}
body.fop-footer-page--type-hero .entry-content{
  color: rgba(255,255,255,1);
}
body.fop-footer-page--type-hero .entry-content a{
  color: rgba(255,255,255,1);
}
body.fop-footer-page--type-hero .entry-content a:hover{
  color: rgba(255,255,255,0.85);
}
/* 官网这些页面通常不显示“页面名 h1”（如 Financing/Gifts）；隐藏本地自动生成的 h1，避免版式偏差 */
body.fop-footer-page--type-hero .entry-content > h1:first-child{
  display: none;
}
body.fop-footer-page--type-hero .entry-content h3{
  font-family: Chelt, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 66px;
  margin: 0 0 18px 0;
  color: rgba(255,255,255,1);
}
body.fop-footer-page--type-hero .entry-content p{
  font-size: 28px;
  line-height: 36.4px;
  color: rgba(255,255,255,1);
}
body.fop-footer-page--type-hero .entry-content h2{
  color: rgba(255,255,255,1);
}
@media (max-width: 921px){
  body.fop-footer-page--type-hero .fop-legal-page{
    padding: 96px 22px 96px;
  }
}
@media (max-width: 544px){
  body.fop-footer-page--type-hero .fop-legal-page{
    padding: 72px 18px 72px;
  }
  body.fop-footer-page--type-hero .entry-content h3{
    font-size: 36px;
    line-height: 39.6px;
  }
  body.fop-footer-page--type-hero .entry-content p{
    font-size: 20px;
    line-height: 26px;
  }
}

/* ---------- 特殊页面：press（官网 pc 段落字号更大，pad/iphone 行高更紧） ---------- */
body.fop-footer-page--press .entry-content p{
  font-size: 36px;
  line-height: 59.04px;
}
@media (max-width: 921px){
  body.fop-footer-page--press .entry-content p{
    font-size: 16px;
    line-height: 23.04px;
  }
}
@media (max-width: 544px){
  body.fop-footer-page--press .entry-content p{
    font-size: 16px;
    line-height: 23.04px;
  }
}

/* ---------- 特殊页面：accessibility（正文字号 18px） ---------- */
body.fop-footer-page--accessibility .entry-content{
  font-size: 18px;
  line-height: 1.7;
}

/* ---------- 特殊页面：in-store-pickup（标题/正文行高更紧） ---------- */
body.fop-footer-page--in-store-pickup .entry-content h3{
  font-size: 28px;
  line-height: 39.2px;
  margin-top: 18px;
}
body.fop-footer-page--in-store-pickup .entry-content p{
  font-size: 16px;
  line-height: 20.8px;
}
@media (max-width: 544px){
  body.fop-footer-page--in-store-pickup .entry-content h3{
    font-size: 24px;
    line-height: 33.6px;
  }
  body.fop-footer-page--in-store-pickup .entry-content p{
    font-size: 14px;
    line-height: 18.2px;
  }
}

/* ---------- 特殊页面：corporate-sales / corporate-gifting（官网标题更小、正文更大） ---------- */
body.fop-footer-page--corporate-sales .entry-content h1,
body.fop-footer-page--corporate-gifting .entry-content h1{
  font-size: 48px;
  line-height: 57.6px;
}
body.fop-footer-page--corporate-sales .entry-content p,
body.fop-footer-page--corporate-gifting .entry-content p{
  font-size: 26px;
  line-height: 41.6px;
}
@media (max-width: 921px){
  body.fop-footer-page--corporate-sales .entry-content p,
  body.fop-footer-page--corporate-gifting .entry-content p{
    font-size: 22px;
    line-height: 35.2px;
  }
}
@media (max-width: 544px){
  body.fop-footer-page--corporate-sales .entry-content h1,
  body.fop-footer-page--corporate-gifting .entry-content h1{
    font-size: 32px;
    line-height: 38.4px;
  }
  body.fop-footer-page--corporate-sales .entry-content p,
  body.fop-footer-page--corporate-gifting .entry-content p{
    font-size: 22px;
    line-height: 35.2px;
  }
}

/* ---------- 特殊页面：recycling-program（官网 h1 44px） ---------- */
body.fop-footer-page--recycling-program .entry-content h1{
  font-size: 44px;
  line-height: 48.4px;
}
body.fop-footer-page--recycling-program .entry-content p{
  font-size: 28px;
  line-height: 36.4px;
  color: rgba(255,255,255,1);
  /* 官网该段落处在带背景的图片区块上；这里用纯色块近似 */
  background: rgb(158, 158, 158);
  padding: 22px 24px;
  border-radius: 22px;
}
@media (max-width: 544px){
  body.fop-footer-page--recycling-program .entry-content h1{
    font-size: 44px;
    line-height: 48.4px;
  }
  body.fop-footer-page--recycling-program .entry-content p{
    font-size: 20px;
    line-height: 26px;
    padding: 18px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 921px){
  .site-primary-footer-wrap .site-footer-section:last-child .footer-widget-area{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .site-primary-footer-wrap .widget-title{ font-size: 40px; font-weight: 300; }
}
@media (max-width: 544px){
  .site-primary-footer-wrap .site-footer-section:last-child .footer-widget-area{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  /* 官网 iPhone：Keep in touch 约 36px */
  .site-primary-footer-wrap .widget-title{ font-size: 36px; font-weight: 300; }
  /* 官网 iPhone：Happening 标题约 28px */
  .fop-happening2__title{ font-size: 28px; font-weight: 400; line-height: 1.15; }
}

/* Footer 顶部增强区：订阅 + press 条（三端响应式） */
.fop-footer-top{
  border-top: 1px solid var(--fop-border);
  padding: 56px 0 28px;
}
.fop-footer-top__inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.fop-footer-newsletter__title{
  margin: 0 0 10px 0;
  font-size: 28px;
  line-height: 1.05;
}
.fop-footer-newsletter__sub{
  margin: 0 0 16px 0;
  opacity: .92;
}
.fop-newsletter-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 520px;
}
.fop-newsletter-form input{
  width: 100%;
  border: 1px solid var(--fop-border);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
}
.fop-newsletter-form input:focus{
  background: rgba(255,255,255,0.75);
}
.fop-newsletter-form button{
  padding: 12px 18px;
  white-space: nowrap;
}
.fop-footer-newsletter__fineprint{
  margin: 12px 0 0 0;
  font-size: 12px;
  opacity: .78;
  max-width: 560px;
}
.fop-footer-press__label{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .8;
  margin: 6px 0 10px 0;
}
.fop-footer-press__logos{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.fop-footer-press__logos img{
  height: 26px;
  width: auto;
  max-width: 160px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity .2s ease;
}
.fop-footer-press__logos img:hover{
  opacity: 0.85;
}

@media (max-width: 1024px){
  .fop-footer-top__inner{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 544px){
  .fop-footer-top{
    padding: 40px 0 22px;
  }
  .fop-footer-newsletter__title{
    font-size: 24px;
  }
  .fop-newsletter-form{
    grid-template-columns: 1fr;
  }
  .fop-footer-press__logos img{
    height: 22px;
    max-width: 140px;
  }
}

/* Footer 多列链接（简版官网结构） */
.site-primary-footer-wrap{
  border-top: 1px solid var(--fop-border);
}
.fop-footer-col h4{
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.fop-footer-col p{
  margin: 0;
  opacity: 0.9;
}
.fop-footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.fop-footer-col a{
  color: inherit;
  text-decoration: none;
}
.fop-footer-col a:hover{
  text-decoration: underline;
}
