/* CFC Wedding Lists — modern redesign (scoped under .cfc-rd so it overrides
   the legacy HTML5UP/Bootstrap styles without breaking inner templates). */

html body{ margin:0 !important; background:#ffffff !important; }

.cfc-rd{
  /* Brand palette: sage green #5c5f4f + white (per client brief) */
  --cream:#ffffff; --paper:#ffffff; --sand:#eef0ea; --line:#e2e4da;
  --ink:#2e3127; --muted:#5e6255; --faint:#9aa08f;
  --accent:#5c5f4f; --accent-dark:#474a3c; --charcoal:#3d4032;
  --serif:'Cormorant Garamond',Georgia,serif; --sans:'Jost',system-ui,sans-serif;
  font-family:var(--sans); font-weight:300; color:var(--ink);
  background:var(--cream); line-height:1.7; font-size:16px;
}
.cfc-rd *{ box-sizing:border-box; }
.cfc-rd img{ max-width:100%; height:auto; }
.cfc-rd a{ color:inherit; text-decoration:none; }
.cfc-rd h1,.cfc-rd h2,.cfc-rd h3,.cfc-rd h4{ color:var(--ink); font-weight:500; }
.cfc-rd p{ margin:0 0 1rem; }
.cfc-rd .wrap{ max-width:1140px; margin:0 auto; padding:0 28px; }
.cfc-rd .serif{ font-family:var(--serif); }
.cfc-rd .muted{ color:var(--muted); }
.cfc-rd .center{ text-align:center; }
.cfc-rd .eyebrow{ font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--accent); font-weight:400; }

/* buttons */
.cfc-rd .btn{ display:inline-block; font-family:var(--sans); font-size:14px; font-weight:400;
  letter-spacing:.3px; padding:13px 26px; border-radius:30px; cursor:pointer; border:1px solid transparent; transition:.18s; }
.cfc-rd .btn-primary{ background:var(--accent-dark); color:var(--paper); }
.cfc-rd .btn-primary:hover{ background:#373a2d; color:var(--paper); }
.cfc-rd .btn-ghost{ background:transparent; color:var(--accent-dark); border-color:#aeb3a0; }
.cfc-rd .btn-ghost:hover{ background:#e6e9df; }
.cfc-rd .btn-sm{ padding:9px 18px; font-size:13px; }
.cfc-rd .btn-block{ display:block; width:100%; text-align:center; }

/* header */
.cfc-rd .site-header{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--line); }
.cfc-rd .site-header .nav{ display:flex; align-items:center; justify-content:space-between; height:74px; }
.cfc-rd .brand{ display:flex; align-items:center; gap:11px; }
.cfc-rd .brand-logo{ height:46px; width:auto; }
.cfc-rd .brand-sub{ font-family:var(--serif); font-style:italic; font-weight:400; font-size:19px; color:var(--accent-dark); }
.cfc-rd .nav-links{ display:flex; align-items:center; }
.cfc-rd .cfc-menu{ display:flex; align-items:center; gap:24px; list-style:none; margin:0; padding:0; }
.cfc-rd .cfc-menu li{ margin:0; }
.cfc-rd .cfc-menu a{ font-size:13.5px; color:#55584b; }
.cfc-rd .cfc-menu a:hover{ color:var(--accent-dark); }
.cfc-rd .nav-toggle{ display:none; align-items:center; justify-content:center; width:44px; height:44px; border:0; background:transparent; color:var(--accent-dark); font-size:25px; cursor:pointer; padding:0; }
@media(max-width:820px){
  .cfc-rd .nav-toggle{ display:inline-flex; order:3; }
  .cfc-rd .cart-link{ order:2; }
  .cfc-rd .nav-links{ gap:4px; }
  .cfc-rd .cfc-menu{
    order:4; position:absolute; left:0; right:0; top:100%;
    flex-direction:column; align-items:stretch; gap:0; margin:0; padding:0;
    background:var(--paper); border-top:1px solid var(--line);
    box-shadow:0 14px 28px rgba(36,39,30,.12);
    max-height:0; overflow:hidden; transition:max-height .28s ease;
  }
  .cfc-rd .site-header.menu-open .cfc-menu{ max-height:80vh; overflow:auto; }
  .cfc-rd .cfc-menu li{ width:100%; margin:0; border-bottom:1px solid var(--line); }
  .cfc-rd .cfc-menu a{ display:block; padding:15px 28px; font-size:15.5px; }
}

/* hero */
.cfc-rd .hero{ text-align:center; padding:72px 28px 56px; }
.cfc-rd .hero h1{ font-family:var(--serif); font-weight:500; font-size:clamp(38px,6vw,58px); line-height:1.05;
  margin:14px auto 0; max-width:620px; color:var(--ink); }
.cfc-rd .hero p{ max-width:440px; margin:18px auto 28px; font-size:16px; color:var(--muted); }
.cfc-rd .hero-cta{ display:flex; gap:13px; justify-content:center; flex-wrap:wrap; }

/* find-a-list panel */
.cfc-rd .findwrap{ padding-bottom:60px; }
.cfc-rd .find-panel{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:30px; text-align:center; max-width:680px; margin:0 auto; }
.cfc-rd .find-panel h2{ font-family:var(--serif); font-size:26px; font-weight:500; margin:0 0 4px; }
.cfc-rd .search-row{ display:flex; gap:10px; max-width:520px; margin:18px auto 0; }
.cfc-rd .search-row input{ flex:1; font-family:var(--sans); font-size:15px; font-weight:300;
  background:var(--cream); border:1px solid #dadcd0; border-radius:30px; padding:13px 20px; color:var(--ink); }
.cfc-rd .search-row input::placeholder{ color:var(--faint); }
.cfc-rd .search-row input:focus{ outline:none; border-color:var(--accent); }

/* sections */
.cfc-rd .section{ padding:62px 0; }
.cfc-rd .section.alt{ background:var(--sand); }
.cfc-rd .section h2.title{ font-family:var(--serif); font-size:34px; font-weight:500; margin:8px 0 0; }
.cfc-rd .lead{ max-width:560px; margin:14px auto 0; color:var(--muted); }

/* how it works */
.cfc-rd .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:42px; }
.cfc-rd .step{ text-align:center; }
.cfc-rd .step .ic{ width:58px; height:58px; border-radius:50%; border:1px solid #cdd0c2; color:var(--accent);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:24px; }
.cfc-rd .step h3{ font-family:var(--serif); font-size:21px; font-weight:500; margin:0 0 6px; }
.cfc-rd .step p{ font-size:14px; color:var(--muted); margin:0 auto; max-width:240px; }
@media(max-width:720px){ .cfc-rd .steps{ grid-template-columns:1fr; gap:34px; } }

/* gift grid / cards (for registry + listings) */
.cfc-rd .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:38px; }
.cfc-rd .grid.cols-3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:900px){ .cfc-rd .grid,.cfc-rd .grid.cols-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .cfc-rd .grid,.cfc-rd .grid.cols-3{ grid-template-columns:1fr; } }
.cfc-rd .card{ background:var(--paper); border:1px solid var(--line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:.18s; }
.cfc-rd .card:hover{ border-color:#cdd0c2; transform:translateY(-2px); }
.cfc-rd .card .thumb{ aspect-ratio:1/1; background:var(--sand); display:flex; align-items:center; justify-content:center; color:#a9ad97; font-size:34px; }
.cfc-rd .card .body{ padding:14px 15px 16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.cfc-rd .card .name{ font-size:14px; color:var(--ink); line-height:1.4; }
.cfc-rd .card .price{ font-family:var(--serif); font-size:18px; color:var(--accent-dark); }
.cfc-rd .card .thumb{ position:relative; }
.cfc-rd .card .thumb img{ width:100%; height:100%; object-fit:contain; padding:16px; }
.cfc-rd .card .meta{ font-size:12px; color:var(--faint); }
.cfc-rd .avail{ height:6px; background:#e3e6db; border-radius:6px; overflow:hidden; margin-top:2px; }
.cfc-rd .avail span{ display:block; height:100%; background:var(--accent); }
.cfc-rd .tag{ display:inline-block; font-size:11px; letter-spacing:.5px; text-transform:uppercase; background:#e6e9df; color:var(--accent-dark); border-radius:20px; padding:3px 10px; }
.cfc-rd .tag.done{ position:absolute; top:10px; right:10px; background:#e3e7e0; color:#5b6b58; }
.cfc-rd .qty-select{ font-family:var(--sans); font-size:14px; border:1px solid #cdd0c2; border-radius:8px; padding:0 8px; background:var(--paper); color:var(--ink); }
/* registry header bar */
.cfc-rd .registry-hero{ background:var(--sand); padding:42px 0; }
.cfc-rd .registry-hero .couple{ font-size:40px; font-weight:500; margin:6px 0 0; color:var(--ink); }
.cfc-rd .registry-bar{ display:flex; flex-wrap:wrap; gap:18px; align-items:center; margin:24px auto 0; max-width:760px;
  background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:16px 22px; }
.cfc-rd .registry-bar .stat b{ font-family:var(--serif); font-size:22px; color:var(--accent-dark); font-weight:500; display:block; }
.cfc-rd .registry-bar .stat span{ font-size:12px; color:var(--faint); }

/* homepage collections gallery */
.cfc-rd .gallery{ display:flex; flex-direction:column; gap:18px; margin-top:36px; }
.cfc-rd .gallery a{ display:block; overflow:hidden; border-radius:16px; }
.cfc-rd .gallery img{ width:100%; display:block; transition:transform .45s ease; }
.cfc-rd .gallery a:hover img{ transform:scale(1.03); }
.cfc-rd .gallery .banner img{ aspect-ratio:5/2; object-fit:cover; }
.cfc-rd .gallery .trio{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.cfc-rd .gallery .trio img{ aspect-ratio:1/1; object-fit:cover; }
@media(max-width:720px){
  .cfc-rd .gallery .trio{ grid-template-columns:1fr; }
  .cfc-rd .gallery .banner img{ aspect-ratio:16/9; }
}

/* empty-image placeholder on registry cards */
.cfc-rd .thumb-empty{ background:linear-gradient(0deg,#eef0ea,#f6f7f3); flex-direction:column; }
.cfc-rd .thumb-empty .ph{ display:flex; flex-direction:column; align-items:center; gap:8px; color:#a9ad97; }
.cfc-rd .thumb-empty .ph i{ font-size:38px; }
.cfc-rd .thumb-empty .ph em{ font-style:normal; font-family:var(--serif); font-size:13px; letter-spacing:1px; color:#b3a890; }

/* ===== home (mockup match): hero / find bar / mosaic / why / stores ===== */
.cfc-rd .eyebrow.light{ color:#e9dcc2; }
.cfc-rd .btn-ghost-light{ background:rgba(255,255,255,.10); color:#fff; border:1px solid rgba(255,255,255,.55); }
.cfc-rd .btn-ghost-light:hover{ background:rgba(255,255,255,.20); color:#fff; }

.cfc-rd .home-hero{ position:relative; background-size:cover; background-position:center; min-height:560px; display:flex; align-items:center; }
.cfc-rd .home-hero-overlay{ position:absolute; inset:0; background:linear-gradient(90deg,rgba(36,39,30,.80) 0%,rgba(36,39,30,.5) 48%,rgba(36,39,30,.12) 100%); }
.cfc-rd .home-hero-inner{ position:relative; padding:64px 28px 108px; }
.cfc-rd .home-hero h1{ font-family:var(--serif); font-weight:500; color:#fff; font-size:clamp(34px,5vw,54px); line-height:1.06; margin:14px 0 0; }
.cfc-rd .home-hero p{ color:#f0e9da; max-width:440px; margin:16px 0 26px; font-size:16px; }
.cfc-rd .home-hero .hero-cta{ justify-content:flex-start; }
.cfc-rd .home-hero .btn-primary{ background:var(--accent); color:#fff !important; border:1px solid var(--accent); font-weight:400; }
.cfc-rd .home-hero .btn-primary:hover{ background:#856a44; }
.cfc-rd .home-hero .btn-ghost-light{ background:rgba(36,39,30,.40); color:#fff !important; border:1px solid rgba(255,255,255,.75); }
.cfc-rd .home-hero .btn-ghost-light:hover{ background:rgba(36,39,30,.6); }

.cfc-rd .find-bar{ position:relative; margin-top:-58px; z-index:5; background:var(--paper); border:1px solid var(--line); border-radius:16px;
  box-shadow:0 14px 40px rgba(36,39,30,.10); padding:22px 26px; display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.cfc-rd .fb-intro{ display:flex; align-items:center; gap:16px; flex:1; min-width:280px; }
.cfc-rd .fb-rings{ width:48px; height:48px; flex:none; border-radius:50%; border:1px solid #cdd0c2; color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:22px; }
.cfc-rd .fb-intro strong{ display:block; font-family:var(--serif); font-size:19px; color:var(--ink); font-weight:500; }
.cfc-rd .fb-intro span{ font-size:13px; color:var(--muted); }
.cfc-rd .fb-search{ display:flex; gap:10px; flex:1; min-width:280px; }
.cfc-rd .fb-search input{ flex:1; background:var(--cream); border:1px solid #dadcd0; border-radius:30px; padding:12px 18px; font-family:var(--sans); font-size:15px; font-weight:300; color:var(--ink); }
.cfc-rd .fb-search input:focus{ outline:none; border-color:var(--accent); }
.cfc-rd .find-badges{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:18px 4px 0; }
.cfc-rd .find-badges>div{ display:flex; flex-direction:column; gap:1px; padding-left:30px; position:relative; }
.cfc-rd .find-badges>div i{ position:absolute; left:0; top:2px; color:var(--accent); font-size:18px; }
.cfc-rd .find-badges b{ font-size:13px; color:var(--ink); font-weight:500; }
.cfc-rd .find-badges span{ font-size:12px; color:var(--muted); }
@media(max-width:680px){ .cfc-rd .find-badges{ grid-template-columns:1fr; } }

.cfc-rd .mosaic{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:200px; gap:16px; margin-top:38px; }
.cfc-rd .m-tile{ position:relative; border-radius:14px; overflow:hidden; background-size:cover; background-position:center; background-color:var(--sand); display:flex; align-items:flex-end; transition:.2s; }
.cfc-rd .m-tile:hover{ transform:translateY(-2px); }
.cfc-rd .m-tile.large{ grid-row:span 2; align-items:flex-start; }
.cfc-rd .m-tile::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg,rgba(36,39,30,.82),rgba(36,39,30,.12) 62%); }
.cfc-rd .m-tile.large::after{ background:linear-gradient(180deg,rgba(36,39,30,.76),rgba(36,39,30,.08) 58%); }
.cfc-rd .m-tile .m-cap{ position:relative; z-index:2; padding:18px 20px; text-align:left; color:#fff; text-shadow:0 1px 8px rgba(0,0,0,.5); }
.cfc-rd .m-tile .m-cap b{ display:block; font-family:var(--serif); font-size:20px; font-weight:500; }
.cfc-rd .m-tile .m-cap em{ display:block; font-style:normal; font-size:13px; color:#eef0e6; margin-top:2px; }
.cfc-rd .m-tile .m-go{ display:inline-block; margin-top:6px; font-size:12.5px; color:#eef0e6; }
.cfc-rd .m-tile.cta{ background:var(--accent-dark); align-items:center; justify-content:center; }
.cfc-rd .m-tile.cta::after{ display:none; }
.cfc-rd .m-cap-cta{ color:#fff; text-align:center; }
.cfc-rd .m-cap-cta i{ font-size:24px; display:block; margin-bottom:6px; }
.cfc-rd .m-cap-cta b{ font-family:var(--serif); font-size:18px; font-weight:500; }
@media(max-width:760px){ .cfc-rd .mosaic{ grid-template-columns:1fr 1fr; grid-auto-rows:160px; } .cfc-rd .m-tile.large{ grid-column:span 2; grid-row:span 1; } }

.cfc-rd .steps.numbered .step{ position:relative; }
.cfc-rd .steps.numbered .num{ position:absolute; top:4px; left:calc(50% - 70px); width:26px; height:26px; border-radius:50%; border:1px solid var(--accent); color:var(--accent-dark); font-size:13px; display:flex; align-items:center; justify-content:center; }

.cfc-rd .why{ background:var(--charcoal); color:#eef0ea; padding:40px 0; }
.cfc-rd .why-row{ display:grid; grid-template-columns:1.1fr 1fr 1fr 1fr; gap:26px; align-items:center; }
.cfc-rd .why-head{ font-size:28px; color:#fff; font-weight:500; margin:0; }
.cfc-rd .why-item{ display:flex; gap:12px; align-items:flex-start; }
.cfc-rd .why-item i{ font-size:24px; color:#aeb3a0; }
.cfc-rd .why-item b{ display:block; font-size:14px; color:#fff; font-weight:500; }
.cfc-rd .why-item span{ font-size:12.5px; color:#b8b1a3; }
@media(max-width:820px){ .cfc-rd .why-row{ grid-template-columns:1fr 1fr; } .cfc-rd .why-head{ grid-column:span 2; } }

.cfc-rd .stores3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:34px; }
.cfc-rd .s3{ background:var(--paper); border:1px solid var(--line); border-radius:14px; overflow:hidden; text-align:left; }
.cfc-rd .s3-img{ height:140px; background-size:cover; background-position:center; background-color:var(--sand); }
.cfc-rd .s3-b{ padding:18px 20px; }
.cfc-rd .s3-b h3{ font-family:var(--serif); font-size:20px; margin:0 0 6px; color:var(--ink); }
.cfc-rd .s3-b p{ font-size:13px; color:var(--muted); margin:0 0 4px; }
.cfc-rd .s3-ph{ color:var(--accent-dark); font-family:var(--serif); font-size:17px; }
@media(max-width:760px){ .cfc-rd .stores3{ grid-template-columns:1fr; } }

/* trust strip */
.cfc-rd .trust{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--paper); }
.cfc-rd .trust .ti-wrap{ display:flex; align-items:center; justify-content:center; gap:10px; padding:18px 14px; text-align:center; border-right:1px solid var(--line); }
.cfc-rd .trust .ti-wrap:last-child{ border-right:0; }
.cfc-rd .trust i{ font-size:22px; color:var(--accent); }
.cfc-rd .trust span{ font-size:13px; color:var(--muted); }
@media(max-width:720px){ .cfc-rd .trust{ grid-template-columns:1fr 1fr; } .cfc-rd .trust .ti-wrap:nth-child(2){border-right:0;} }

/* category / browse tiles */
.cfc-rd .cats{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
@media(max-width:760px){ .cfc-rd .cats{ grid-template-columns:1fr 1fr; } }
.cfc-rd .cat{ position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  background:var(--sand); border:1px solid var(--line); border-radius:14px; padding:34px 18px; text-align:center; transition:.18s; }
.cfc-rd .cat:hover{ background:#e7ddc9; transform:translateY(-2px); }
.cfc-rd .cat i{ font-size:30px; color:var(--accent-dark); }
.cfc-rd .cat .ct{ font-family:var(--serif); font-size:19px; color:var(--ink); }
.cfc-rd .cat .cs{ font-size:12px; color:var(--muted); }

/* brand strip */
.cfc-rd .brands{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:30px 0; }
.cfc-rd .brands .row{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px 40px; }
.cfc-rd .brands .b{ font-family:var(--serif); font-size:21px; letter-spacing:1px; color:#a99b82; }

/* showroom cards */
.cfc-rd .stores-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:34px; }
@media(max-width:680px){ .cfc-rd .stores-grid{ grid-template-columns:1fr; } }
.cfc-rd .store-card{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:26px 28px; }
.cfc-rd .store-card h3{ font-family:var(--serif); font-size:22px; margin:0 0 8px; color:var(--ink); }
.cfc-rd .store-card p{ font-size:14px; color:var(--muted); margin:0 0 6px; }
.cfc-rd .store-card .ph{ color:var(--accent-dark); font-family:var(--serif); font-size:19px; }

/* stores strip + footer */
.cfc-rd .cfc-stores{ display:grid; grid-template-columns:1fr 1fr; background:var(--charcoal); color:#eef0ea; }
.cfc-rd .cfc-stores .store{ padding:30px 34px; }
.cfc-rd .cfc-stores .store:first-child{ border-right:1px solid #454838; }
.cfc-rd .cfc-stores .lbl{ font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#aeb3a0; }
.cfc-rd .cfc-stores .num{ font-family:var(--serif); font-size:24px; margin:6px 0 4px; }
.cfc-rd .cfc-stores .num a{ color:#eef0ea; }
.cfc-rd .cfc-stores .addr{ font-size:13px; color:#b8b2a6; }
@media(max-width:560px){ .cfc-rd .cfc-stores{ grid-template-columns:1fr; } .cfc-rd .cfc-stores .store:first-child{ border-right:0; border-bottom:1px solid #454838; } }
.cfc-rd .cfc-foot{ background:#2a2823; color:#8d8678; text-align:center; font-size:12px; letter-spacing:.5px; padding:18px; }

/* rich footer */
.cfc-rd .site-footer{ background:var(--charcoal); color:#cdd0c2; padding:54px 0 0; }
.cfc-rd .site-footer .foot-top{ display:grid; grid-template-columns:1.3fr 3fr; gap:40px; padding-bottom:38px; border-bottom:1px solid #454838; }
.cfc-rd .foot-logo{ display:flex; align-items:center; gap:10px; }
.cfc-rd .foot-logo img{ height:42px; width:auto; }
.cfc-rd .foot-logo span{ font-family:var(--serif); font-style:italic; color:#e9dcc2; font-size:18px; }
.cfc-rd .foot-brand p{ font-size:13px; color:#a59d8e; margin:14px 0 16px; max-width:300px; line-height:1.6; }
.cfc-rd .foot-social{ display:flex; gap:12px; }
.cfc-rd .foot-social a{ width:34px; height:34px; border-radius:50%; border:1px solid #454838; display:flex; align-items:center; justify-content:center; color:#aeb3a0; }
.cfc-rd .foot-social a:hover{ background:#454838; color:#fff; }
.cfc-rd .foot-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.cfc-rd .fc h4{ font-family:var(--sans); font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:#e9dcc2; margin:0 0 14px; font-weight:500; }
.cfc-rd .fc a{ display:block; font-size:13px; color:#a59d8e; margin-bottom:9px; }
.cfc-rd .fc a:hover{ color:#fff; }
.cfc-rd .fc-stores p{ font-size:12.5px; color:#a59d8e; margin:0 0 12px; line-height:1.6; }
.cfc-rd .fc-stores b{ color:#cdd0c2; }
.cfc-rd .foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:18px 0; font-size:12px; color:#8d8678; }
.cfc-rd .foot-legal a{ color:#8d8678; }
.cfc-rd .foot-legal a:hover{ color:#cdd0c2; }
@media(max-width:820px){ .cfc-rd .site-footer .foot-top{ grid-template-columns:1fr; } .cfc-rd .foot-cols{ grid-template-columns:1fr 1fr; } }

/* search results — couple cards */
.cfc-rd .results{ display:flex; flex-direction:column; gap:12px; }
.cfc-rd .result-card{ display:flex; align-items:center; gap:16px; background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:16px 20px; transition:.18s; }
.cfc-rd .result-card:hover{ border-color:#cdd0c2; transform:translateY(-1px); }
.cfc-rd .result-card .rc-icon{ width:46px; height:46px; flex:none; border-radius:50%; background:var(--sand); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:20px; }
.cfc-rd .result-card .rc-body{ flex:1; }
.cfc-rd .result-card .rc-name{ font-family:var(--serif); font-size:21px; color:var(--ink); display:block; }
.cfc-rd .result-card .rc-meta{ font-size:13px; color:var(--muted); }
.cfc-rd .result-card .rc-arrow{ color:var(--accent); font-size:22px; }

/* notices */
.cfc-rd .notice-error{ background:#f7e6e3; color:#8a3a28; border:1px solid #e6c3ba; border-radius:10px; padding:14px 18px; margin-bottom:18px; }

/* basket */
.cfc-rd .cart-table td,.cfc-rd .cart-table th{ vertical-align:middle; }
.cfc-rd .cart-remove{ display:inline-flex; width:28px; height:28px; align-items:center; justify-content:center; border-radius:50%; background:#eef0ea; color:#5c5f4f; font-size:18px; line-height:1; }
.cfc-rd .cart-remove:hover{ background:#e3e6db; color:#474a3c; }
.cfc-rd .cart-foot{ display:flex; align-items:center; justify-content:flex-end; gap:24px; margin-top:18px; padding-top:18px; border-top:1px solid var(--line); flex-wrap:wrap; }
.cfc-rd .cart-total{ font-size:15px; color:var(--muted); }
.cfc-rd .cart-total b{ font-family:var(--serif); font-size:24px; color:var(--accent-dark); margin-left:8px; }

/* legacy Bootstrap checkout form -> clean modern form */
.cfc-rd #main form.form-horizontal,.cfc-rd #main form#contact_form{ max-width:640px; margin:10px auto 0; text-align:left; }
.cfc-rd #main form .form-group{ margin-bottom:16px; }
.cfc-rd #main .control-label{ display:block; float:none; width:auto; text-align:left; padding:0 0 6px; font-family:var(--sans); font-weight:400; font-size:14px; color:var(--ink); }
.cfc-rd #main .col-md-4,.cfc-rd #main .col-md-6,.cfc-rd #main .inputGroupContainer{ width:100%; padding:0; float:none; }
.cfc-rd #main .input-group{ display:flex; width:100%; }
.cfc-rd #main .input-group-addon{ display:none; }
.cfc-rd #main .form-control,.cfc-rd #main select,.cfc-rd #main textarea{ width:100%; max-width:none; font-family:var(--sans); font-size:15px;
  background:var(--cream); border:1px solid #dadcd0; border-radius:12px; padding:11px 16px; color:var(--ink); }
.cfc-rd #main .form-control:focus,.cfc-rd #main select:focus,.cfc-rd #main textarea:focus{ outline:none; border-color:var(--accent); }
.cfc-rd #main .radio{ display:inline-block; margin:0 20px 4px 0; }
.cfc-rd #main .radio label{ font-size:14px; color:var(--muted); }
.cfc-rd #main .alert-success{ background:#eef3e8; color:#4d6438; border:1px solid #cfe0bd; border-radius:10px; padding:14px 18px; }
.cfc-rd #main .btn-warning,.cfc-rd #main form button[name=submit]{ background:var(--accent-dark); color:var(--paper); border:none; border-radius:30px; padding:13px 32px; font-family:var(--sans); font-size:15px; cursor:pointer; }
.cfc-rd #main .btn-warning:hover{ background:#373a2d; }

/* Contact Form 7 */
.cfc-rd .wpcf7 input[type=text],.cfc-rd .wpcf7 input[type=email],.cfc-rd .wpcf7 input[type=tel],.cfc-rd .wpcf7 textarea,.cfc-rd .wpcf7 select{
  width:100%; font-family:var(--sans); font-size:15px; background:var(--cream); border:1px solid #dadcd0; border-radius:12px; padding:11px 16px; color:var(--ink); margin:4px 0; }
.cfc-rd .wpcf7 input[type=submit]{ background:var(--accent-dark); color:var(--paper); border:none; border-radius:30px; padding:12px 28px; font-family:var(--sans); cursor:pointer; }

/* inner page hero + body */
.cfc-rd .page-hero{ background:var(--sand); padding:54px 0 46px; }
.cfc-rd .page-hero h1{ font-family:var(--serif); font-size:clamp(30px,4.5vw,46px); font-weight:500; margin:8px 0 0; color:var(--ink); }
.cfc-rd .pagebody{ font-size:16px; color:var(--muted); line-height:1.8; }
.cfc-rd .pagebody h1,.cfc-rd .pagebody h2,.cfc-rd .pagebody h3{ font-family:var(--serif); color:var(--ink); }
.cfc-rd .pagebody a{ color:var(--accent-dark); }
.cfc-rd .pagebody img{ border-radius:12px; max-width:100%; height:auto; }
.cfc-rd .pagebody ul,.cfc-rd .pagebody ol{ padding-left:20px; }
/* FAQ accordion */
.cfc-rd .faq{ display:flex; flex-direction:column; gap:10px; margin-top:26px; }
.cfc-rd .faq-item{ background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:0 20px; }
.cfc-rd .faq-item summary{ cursor:pointer; padding:16px 0; font-family:var(--serif); font-size:18px; color:var(--ink); list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.cfc-rd .faq-item summary::-webkit-details-marker{ display:none; }
.cfc-rd .faq-item summary i{ color:var(--accent); transition:.2s; }
.cfc-rd .faq-item[open] summary i{ transform:rotate(180deg); }
.cfc-rd .faq-item[open] summary{ border-bottom:1px solid var(--line-soft); }
.cfc-rd .faq-a{ padding:12px 0 18px; color:var(--muted); font-size:14.5px; line-height:1.7; }
/* two-column (form + map) */
.cfc-rd .two-col{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
@media(max-width:760px){ .cfc-rd .two-col{ grid-template-columns:1fr; } }
.cfc-rd .map-embed iframe{ width:100%; min-height:330px; border:0; border-radius:12px; }

/* keep legacy inner-page content readable inside the wrapper */
.cfc-rd #main{ max-width:1140px; margin:0 auto; padding:48px 28px; }

/* ---- legacy HTML5UP/Bootstrap inner-page overrides (About, Gift Ideas, etc.) ---- */
.cfc-rd #main .main,.cfc-rd #main section{ padding:0 0 28px; }
.cfc-rd #main h1,.cfc-rd #main h2,.cfc-rd #main h3,.cfc-rd #main .major h2{
  font-family:var(--serif); font-weight:500; color:var(--ink); }
.cfc-rd #main h2{ font-size:32px; }
.cfc-rd #main h3{ font-size:22px; }
.cfc-rd #main p,.cfc-rd #main li{ color:var(--muted); }
.cfc-rd #main a{ color:var(--accent-dark); }
.cfc-rd #main a:hover{ color:var(--accent); }
.cfc-rd .spotlight{ display:flex; gap:40px; align-items:center; flex-wrap:wrap; justify-content:center; }
.cfc-rd .spotlight .content{ flex:1; min-width:280px; }
.cfc-rd .spotlight .image img,.cfc-rd #main .image img{ border-radius:16px; max-width:100%; }
/* legacy form controls -> match redesign inputs/buttons */
.cfc-rd .form-control{ font-family:var(--sans); font-size:15px; font-weight:300; background:var(--cream);
  border:1px solid #dadcd0; border-radius:30px; padding:12px 18px; color:var(--ink); width:100%; max-width:360px; }
.cfc-rd .form-control:focus{ outline:none; border-color:var(--accent); }
.cfc-rd #main .button,.cfc-rd #main button.btn{ background:var(--accent-dark); color:var(--paper);
  border:none; border-radius:30px; padding:11px 24px; font-family:var(--sans); cursor:pointer; }
.cfc-rd #main .button:hover,.cfc-rd #main button.btn:hover{ background:#373a2d; }
/* tables on inner pages (e.g. list views) */
.cfc-rd #main table{ width:100%; border-collapse:collapse; }
.cfc-rd #main table th{ font-family:var(--sans); font-weight:500; text-align:left; border-bottom:1px solid var(--line); padding:10px 12px; color:var(--ink); }
.cfc-rd #main table td{ border-bottom:1px solid var(--line-soft); padding:10px 12px; }

/* ---- wedding-list (registry) view: clean container + shop-style thumbnails ---- */
.cfc-rd #main section.special{ border:0 !important; background:transparent !important; box-shadow:none !important; padding:0 !important; }
.cfc-rd #main .table-responsive{ border:0 !important; background:transparent; }
.cfc-rd #main section.special .major h2{ text-align:center; }
.cfc-rd #main table.table-striped td{ vertical-align:middle; }
.cfc-rd #main table.table-striped tbody td img{
  width:62px !important; height:62px; object-fit:contain; background:#fff;
  border:1px solid var(--line); border-radius:10px; padding:5px; }
.cfc-rd #main table.table-striped tbody tr:nth-child(odd) td{ background:#f6f7f3; }
.cfc-rd #main table.table-striped tbody tr:hover td{ background:#eef0ea; }
.cfc-rd #main table.table-striped .price,.cfc-rd #main td[align="right"]{ font-family:var(--serif); color:var(--accent-dark); }

/* ============================================================
   PREMIUM POLISH PASS — fix legacy HTML5UP faint blue-grey text,
   invisible form fields, washed-out buttons, off-brand award boxes
   ============================================================ */

/* --- readable body copy (legacy theme forced faint #8ba6b3 on content) --- */
.cfc-rd .pagebody, .cfc-rd .pagebody p, .cfc-rd .pagebody li, .cfc-rd .pagebody td,
.cfc-rd .content, .cfc-rd p.content,
.cfc-rd #main p, .cfc-rd #main li, .cfc-rd #main td,
.cfc-rd .main p, .cfc-rd .main li, .cfc-rd section.main p,
.cfc-rd .lead{ color:#363a2e !important; }
.cfc-rd .pagebody h1,.cfc-rd .pagebody h2,.cfc-rd .pagebody h3,
.cfc-rd #main h1,.cfc-rd #main h2,.cfc-rd #main h3,.cfc-rd .main h2{ color:var(--ink) !important; }
.cfc-rd p.content{ column-gap:48px; }

/* --- form fields readable on EVERY form (CF7, checkout, search, legacy) --- */
.cfc-rd input[type=text],.cfc-rd input[type=email],.cfc-rd input[type=tel],
.cfc-rd input[type=number],.cfc-rd input[type=search],.cfc-rd input[type=password],
.cfc-rd input[type=url],.cfc-rd input[type=date],.cfc-rd textarea,.cfc-rd select{
  background:#ffffff !important; color:#2e3127 !important; -webkit-text-fill-color:#2e3127 !important;
  border:1px solid #cdd0c2 !important; border-radius:12px !important; padding:12px 16px !important;
  font-family:var(--sans) !important; font-size:15px !important; font-weight:300 !important; opacity:1 !important; }
.cfc-rd input::placeholder,.cfc-rd textarea::placeholder{ color:#8a8f7c !important; -webkit-text-fill-color:#8a8f7c !important; opacity:1 !important; }
.cfc-rd input::-webkit-input-placeholder,.cfc-rd textarea::-webkit-input-placeholder{ color:#8a8f7c !important; opacity:1 !important; }
.cfc-rd input:-ms-input-placeholder,.cfc-rd textarea:-ms-input-placeholder{ color:#8a8f7c !important; }
.cfc-rd input:focus,.cfc-rd textarea:focus,.cfc-rd select:focus{
  outline:none !important; border-color:var(--accent) !important; box-shadow:0 0 0 3px rgba(154,123,79,.14) !important; }
/* labels + radio/checkbox text */
.cfc-rd label,.cfc-rd .wpcf7 label,.cfc-rd #main label,
.cfc-rd .wpcf7-list-item-label,.cfc-rd .radio label,.cfc-rd .checkbox label{ color:#403a32 !important; }
.cfc-rd input[type=radio],.cfc-rd input[type=checkbox]{
  accent-color:var(--accent); width:auto !important; -webkit-text-fill-color:initial; transform:scale(1.05); margin-right:7px; vertical-align:middle; }
.cfc-rd .wpcf7-list-item{ margin:0 18px 6px 0 !important; }
.cfc-rd .wpcf7-not-valid-tip{ color:#b3402e !important; font-size:13px; }

/* --- buttons: brand colour everywhere (kill legacy washed-out blue) --- */
.cfc-rd .button,.cfc-rd a.button,.cfc-rd .button.special,
.cfc-rd .wpcf7 input[type=submit],.cfc-rd input[type=submit],
.cfc-rd .wp-block-button__link,.cfc-rd #main .button{
  background:var(--accent-dark) !important; color:#fff !important; -webkit-text-fill-color:#fff !important;
  border:none !important; border-radius:30px !important; padding:13px 30px !important;
  font-family:var(--sans) !important; font-size:15px !important; font-weight:400 !important;
  letter-spacing:.3px; cursor:pointer; box-shadow:none !important; text-shadow:none !important; display:inline-block; }
.cfc-rd .button:hover,.cfc-rd a.button:hover,.cfc-rd .button.special:hover,
.cfc-rd .wpcf7 input[type=submit]:hover,.cfc-rd input[type=submit]:hover,
.cfc-rd .wp-block-button__link:hover{ background:#373a2d !important; }

/* --- award/statistics boxes: re-tone HTML5UP navy -> brand palette --- */
.cfc-rd ul.statistics{ display:flex !important; flex-wrap:wrap; gap:12px; list-style:none !important; padding:0 !important; margin:30px 0 !important; }
.cfc-rd ul.statistics li{ flex:1 1 0; min-width:150px; background:var(--accent-dark) !important; color:#fff !important;
  border-radius:14px !important; padding:24px 14px !important; text-align:center; line-height:1.4; }
.cfc-rd ul.statistics li:nth-child(even){ background:#5c5f4f !important; }
.cfc-rd ul.statistics li strong{ color:#fff !important; font-family:var(--serif); font-size:26px; display:block; margin-bottom:6px; font-weight:500; }
.cfc-rd ul.statistics li:before,.cfc-rd ul.statistics li .icon:before{ color:#fff !important; }

/* --- centre call-to-action buttons (Download / Submit / Send Message) --- */
.cfc-rd .pagebody .button{ display:block; width:max-content; max-width:100%; margin:24px auto 6px; }
.cfc-rd .pagebody p:has(.button){ text-align:center; }
.cfc-rd .wpcf7 p:has(input[type=submit]),
.cfc-rd .wpcf7 p:has(input[type=reset]){ text-align:center !important; }
.cfc-rd .wpcf7 input[type=submit],.cfc-rd .wpcf7 input[type=reset]{ display:inline-block; margin:10px 6px 0; }
.cfc-rd #main form.form-horizontal,.cfc-rd #main form#contact_form{ text-align:center; }
.cfc-rd #main form .form-group,.cfc-rd #main form .control-label{ text-align:left; }
.cfc-rd #main form button[name=submit],.cfc-rd #main form .btn-warning{ display:inline-block; margin:10px auto 0; float:none; }

/* reset button = secondary (outline sage) */
.cfc-rd input[type=reset]{ background:transparent !important; color:var(--accent-dark) !important;
  -webkit-text-fill-color:var(--accent-dark) !important; border:1px solid #aeb3a0 !important; border-radius:30px !important;
  padding:13px 30px !important; font-family:var(--sans) !important; font-size:15px !important; cursor:pointer; box-shadow:none !important; }
.cfc-rd input[type=reset]:hover{ background:#e6e9df !important; }

/* --- vertical-centre button text (legacy HTML5UP set a tall line-height/fixed
       height that dropped the label to the bottom of the pill) --- */
.cfc-rd .btn,.cfc-rd .button,.cfc-rd a.button,.cfc-rd .button.special,
.cfc-rd .wpcf7 input[type=submit],.cfc-rd input[type=submit],.cfc-rd input[type=reset],
.cfc-rd .wp-block-button__link,.cfc-rd #main .button,.cfc-rd button.btn,
.cfc-rd #main form button[name=submit],.cfc-rd #main form .btn-warning{
  line-height:1.15 !important; height:auto !important; min-height:0 !important;
  vertical-align:middle !important; text-align:center !important; }
/* anchors/buttons (not inputs, not full-width) → flex centring handles icon+text */
.cfc-rd .button,.cfc-rd a.button,.cfc-rd .button.special,
.cfc-rd .wp-block-button__link,.cfc-rd #main .button,
.cfc-rd #main form button[name=submit],.cfc-rd button.btn:not(.btn-block){
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:8px; }
.cfc-rd .btn:not(.btn-block){ display:inline-flex; align-items:center; justify-content:center; gap:7px; }
.cfc-rd .btn.btn-block{ display:flex; align-items:center; justify-content:center; }
/* keep the centred download button block-level so margin:auto still centres it */
.cfc-rd .pagebody .button{ display:flex !important; width:max-content; }

/* =========================================================
   CLIENT FEEDBACK BATCH 1 — basket in header, denser registry,
   icon add-to-basket, basket images, collection note, 2 stores
   ========================================================= */
/* header basket icon + count badge */
.cfc-rd .nav-links{ display:flex; align-items:center; gap:18px; }
.cfc-rd .cart-link{ position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%; color:var(--accent-dark) !important; font-size:21px; flex:0 0 auto; }
.cfc-rd .cart-link:hover{ background:var(--sand); }
.cfc-rd .cart-link .cart-n{ position:absolute; top:0; right:0; min-width:18px; height:18px; padding:0 4px;
  border-radius:9px; background:var(--accent); color:#fff !important; font-size:11px; font-weight:500;
  display:flex; align-items:center; justify-content:center; line-height:1; }

/* denser registry grid + smaller cards (lists can be long) */
.cfc-rd .registry-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:30px; }
@media(max-width:1000px){ .cfc-rd .registry-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:680px){ .cfc-rd .registry-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } }
.cfc-rd .registry-grid .card .body{ padding:11px 12px 13px; gap:4px; }
.cfc-rd .registry-grid .card .name{ font-size:13px; }
.cfc-rd .registry-grid .card .price{ font-size:16px; }
.cfc-rd .registry-grid .card .thumb img{ padding:10px; }
.cfc-rd .add-form{ margin-top:10px; display:flex; gap:6px; }
.cfc-rd .add-form .qty-select{ width:54px; flex:0 0 auto; }
.cfc-rd .add-btn{ flex:1; padding:9px 8px !important; gap:6px; font-size:13px; }
.cfc-rd .add-btn i{ font-size:17px; }
@media(max-width:520px){ .cfc-rd .add-btn span{ display:none; } .cfc-rd .add-btn{ padding:10px !important; } .cfc-rd .add-btn i{ font-size:20px; } }

/* basket line images */
.cfc-rd .cart-item{ display:flex; align-items:center; gap:12px; text-align:left; }
.cfc-rd .cart-thumb{ width:54px; height:54px; flex:0 0 auto; object-fit:contain; background:#fff;
  border:1px solid var(--line); border-radius:10px; padding:4px; }
.cfc-rd span.cart-thumb-empty{ display:flex; align-items:center; justify-content:center; color:var(--faint); font-size:22px; }
.cfc-rd .cart-item-name{ font-size:14px; color:var(--ink); }

/* delivery = No → collection note */
.cfc-rd .notice-collect{ display:flex; align-items:flex-start; gap:9px; margin-top:14px; max-width:520px;
  background:#eef0ea; border:1px solid #d7dccb; border-radius:10px; padding:12px 14px; color:#3d4032; font-size:14px; text-align:left; }
.cfc-rd .notice-collect i{ color:var(--accent); font-size:18px; margin-top:1px; flex:0 0 auto; }

/* force solid fill on primary/add buttons (a legacy `button` rule was making
   <button class="btn-primary"> render transparent/outline → low visibility) */
.cfc-rd .btn-primary,.cfc-rd button.btn-primary,.cfc-rd .add-btn,.cfc-rd button.add-btn{
  background:var(--accent-dark) !important; color:#fff !important; -webkit-text-fill-color:#fff !important;
  border:1px solid var(--accent-dark) !important; }
.cfc-rd .btn-primary:hover,.cfc-rd button.btn-primary:hover,.cfc-rd .add-btn:hover{
  background:#373a2d !important; border-color:#373a2d !important; }
.cfc-rd .btn-primary i,.cfc-rd .btn-primary span,.cfc-rd .add-btn i,.cfc-rd .add-btn span{
  color:#fff !important; -webkit-text-fill-color:#fff !important; }

/* showrooms 2-up centred (Newtownabbey not a wedding-list store) */
.cfc-rd .stores3{ grid-template-columns:repeat(2,1fr) !important; max-width:760px; margin-left:auto; margin-right:auto; }

/* mobile: stop hero banner text overlapping */
@media(max-width:600px){
  .cfc-rd .home-hero{ min-height:auto !important; padding:38px 0 30px; }
  .cfc-rd .home-hero-inner{ padding-top:6px; padding-bottom:6px; }
  .cfc-rd .home-hero h1{ font-size:30px !important; line-height:1.12; }
  .cfc-rd .home-hero p{ font-size:15px; }
  .cfc-rd .find-bar{ margin-top:18px; flex-direction:column; align-items:stretch; gap:12px; }
  .cfc-rd .stores3{ grid-template-columns:1fr !important; }
}

/* =========================================================
   CLIENT FEEDBACK BATCH 2 — homepage create/find boxes,
   icon selling-features, your-list-your-way, find-a-list
   sage hero, create-a-list page departments
   ========================================================= */
/* two equal Create / Find boxes (overlap up into the hero) */
.cfc-rd .choose{ display:grid; grid-template-columns:1fr 1fr; gap:22px; margin:-58px auto 0; position:relative; z-index:5; }
@media(max-width:680px){ .cfc-rd .choose{ grid-template-columns:1fr; margin-top:-36px; } }
.cfc-rd .choose-card{ background:var(--paper); border:1px solid var(--line); border-radius:16px; padding:34px 30px;
  text-align:center; box-shadow:0 18px 44px rgba(36,39,30,.10); transition:.18s; display:block; }
.cfc-rd .choose-card:hover{ transform:translateY(-3px); border-color:#cdd0c2; }
.cfc-rd .choose-ic{ display:inline-flex; align-items:center; justify-content:center; width:64px; height:64px; border-radius:50%;
  background:var(--sand); color:var(--accent); font-size:30px; margin-bottom:14px; }
.cfc-rd .choose-card h2{ font-family:var(--serif); font-size:28px; font-weight:500; margin:0 0 8px; color:var(--ink); }
.cfc-rd .choose-card p{ color:var(--muted); font-size:15px; margin:0 0 14px; }
.cfc-rd .choose-go{ font-size:14px; color:var(--accent-dark); display:inline-flex; align-items:center; gap:6px; transition:.16s; }
.cfc-rd .choose-card:hover .choose-go{ gap:10px; }

/* selling features */
.cfc-rd .features{ display:grid; grid-template-columns:repeat(5,1fr); gap:22px; margin-top:40px; text-align:center; }
@media(max-width:980px){ .cfc-rd .features{ grid-template-columns:repeat(3,1fr); gap:26px 18px; } }
@media(max-width:600px){ .cfc-rd .features{ grid-template-columns:1fr 1fr; gap:24px 14px; } }
.cfc-rd .feature-ic{ display:inline-flex; align-items:center; justify-content:center; width:66px; height:66px; border-radius:50%;
  background:var(--accent); color:#fff; font-size:28px; margin-bottom:14px; }
.cfc-rd .feature h3{ font-family:var(--serif); font-size:18px; font-weight:500; margin:0 0 6px; color:var(--ink); }
.cfc-rd .feature p{ font-size:13.5px; color:var(--muted); margin:0; line-height:1.6; }

/* your list, your way */
.cfc-rd .yourway{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:38px; }
@media(max-width:680px){ .cfc-rd .yourway{ grid-template-columns:1fr; } }
.cfc-rd .yw{ background:var(--paper); border:1px solid var(--line); border-radius:16px; padding:32px 28px; text-align:center; }
.cfc-rd .yw-ic{ display:inline-flex; align-items:center; justify-content:center; width:58px; height:58px; border-radius:50%;
  border:1px solid #cdd0c2; color:var(--accent); font-size:26px; margin-bottom:14px; }
.cfc-rd .yw h3{ font-family:var(--serif); font-size:21px; font-weight:500; margin:0 0 6px; color:var(--ink); }
.cfc-rd .yw p{ color:var(--muted); font-size:14.5px; margin:0; }

/* find-a-list: muted sage hero + heart graphics (no photo) */
.cfc-rd .find-hero{ position:relative; overflow:hidden; background:var(--sand); padding:66px 0 78px; }
.cfc-rd .find-hero .wrap{ position:relative; z-index:2; }
.cfc-rd .fh-heart{ position:absolute; color:#d8ddcd; z-index:1; }
.cfc-rd .fh-heart-1{ font-size:120px; top:-18px; left:-8px; transform:rotate(-15deg); }
.cfc-rd .fh-heart-2{ font-size:84px; bottom:6px; right:6%; transform:rotate(12deg); }
.cfc-rd .fh-heart-3{ font-size:54px; top:42px; right:24%; opacity:.6; }
.cfc-rd .find-panel-ic{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%;
  background:var(--accent); color:#fff; font-size:26px; margin-bottom:10px; }

/* create-a-list: department suggestion chips */
.cfc-rd .dept-grid{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:30px; }
.cfc-rd .dept{ background:var(--paper); border:1px solid #cdd0c2; border-radius:30px; padding:12px 24px; font-size:15px;
  color:var(--accent-dark) !important; transition:.16s; }
.cfc-rd .dept:hover{ background:var(--accent); color:#fff !important; border-color:var(--accent); }

/* the CF7 "request a call" form markup reuses a legacy <div class="features"> —
   stop our selling-features grid from hijacking it (was crushing the form) */
.cfc-rd .wpcf7 .features{ display:block !important; }
.cfc-rd .wpcf7 .features .feature-ic{ display:none; }
.cfc-rd .wpcf7 p{ margin:0 0 12px; }
.cfc-rd .wpcf7 .actions{ width:100%; }
.cfc-rd .wpcf7 .wpcf7-radio{ display:flex; flex-wrap:wrap; gap:6px 18px; margin-top:4px; }

/* ===== full-audit fixes ===== */
/* remove the legacy HTML5UP blue frame around #main pages (checkout/request/response/thank-you) */
.cfc-rd .one{ border:0 !important; box-shadow:none !important; background:transparent !important; }
/* checkout/legacy submit buttons were rendering transparent (outline) — force solid sage */
.cfc-rd button[name=submit],.cfc-rd .btn-warning,.cfc-rd #main form button[name=submit],.cfc-rd #main .btn-warning{
  background:var(--accent-dark) !important; color:#fff !important; -webkit-text-fill-color:#fff !important;
  border:1px solid var(--accent-dark) !important; border-radius:30px !important; }
.cfc-rd button[name=submit]:hover,.cfc-rd .btn-warning:hover{ background:#373a2d !important; border-color:#373a2d !important; }
.cfc-rd button[name=submit] i,.cfc-rd .btn-warning i{ color:#fff !important; -webkit-text-fill-color:#fff !important; }
