/* Daz Square — homepage visual system. Scoped to body.tw-redesign so it only affects index.html. */
/* Palette: Walnut & Bone — walnut #4A2E20, bone #E7DDCD, brass #B98B3E, warm off-white #FAF6EF. */

body.tw-redesign {
  /* Walnut & Bone palette */
  --page:       #FAF6EF;
  --surface:    #E7DDCD;
  --ink:        #4A2E20;
  --ink-soft:   #5C3D2C;
  --accent:     #B98B3E;
  --accent-dark:#A67D34;
  --support:    #5F6B4A;
  --muted:      #6B5B4E;
  /* legacy aliases so existing rules resolve to the new palette */
  --walnut:      #4A2E20;
  --walnut-deep: #3A241A;
  --brass:       #B98B3E;
  --brass-light: #CDA867;
  --linen:       #FAF6EF;
  --linen-deep:  #E7DDCD;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Inter", sans-serif;
}
body.tw-redesign { background: var(--page); }

body.tw-redesign,
body.tw-redesign p,
body.tw-redesign a,
body.tw-redesign li,
body.tw-redesign span,
body.tw-redesign input,
body.tw-redesign button {
  font-family: var(--sans);
}

body.tw-redesign h1,
body.tw-redesign h2.section-title,
body.tw-redesign h3 {
  font-family: var(--serif);
}

@media (prefers-reduced-motion: reduce) {
  body.tw-redesign * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Reveal-on-scroll ---------- */
body.tw-redesign .tw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
body.tw-redesign .tw-reveal.tw-in {
  opacity: 1;
  transform: translateY(0);
}

/* Card-grid stagger — product/post cards fade up in sequence once their section reveals */
body.tw-redesign .product-section .row > div,
body.tw-redesign .popular-product .row > div,
body.tw-redesign .blog-section .row > div {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
body.tw-redesign .tw-reveal.tw-in .row > div {
  opacity: 1;
  transform: translateY(0);
}
body.tw-redesign .tw-reveal.tw-in .row > div:nth-child(2) { transition-delay: .08s; }
body.tw-redesign .tw-reveal.tw-in .row > div:nth-child(3) { transition-delay: .16s; }
body.tw-redesign .tw-reveal.tw-in .row > div:nth-child(4) { transition-delay: .24s; }
body.tw-redesign .tw-reveal.tw-in .row > div:nth-child(5) { transition-delay: .3s; }

/* ---------- Nav ---------- */
body.tw-redesign .custom-navbar {
  background: var(--ink) !important;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(185,139,62,.2);
  transition: box-shadow .3s ease, padding .3s ease;
  position: sticky;
  top: 0;
  z-index: 999;
}
body.tw-redesign .custom-navbar.tw-scrolled {
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.6);
  padding-top: 10px;
  padding-bottom: 10px;
}
body.tw-redesign .custom-navbar .custom-navbar-nav li a {
  color: var(--linen) !important;
  opacity: .68;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12.5px;
  font-weight: 700;
}
body.tw-redesign .custom-navbar .custom-navbar-nav li a:before {
  background: var(--brass) !important;
}
body.tw-redesign .custom-navbar .custom-navbar-nav li a:hover,
body.tw-redesign .custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
}
body.tw-redesign .custom-navbar .btn.btn-secondary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12.5px;
  padding: 10px 22px;
  box-shadow: 0 8px 20px -8px rgba(185,139,62,.6);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
body.tw-redesign .custom-navbar .btn.btn-secondary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(185,139,62,.75);
}

/* ---------- Hero ---------- */
body.tw-redesign .hero {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 7rem 0 !important;
}
body.tw-redesign .hero:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 1400px;
  height: 1400px;
  background: url("../images/royal-interiors-logo.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: .05;
  pointer-events: none;
}
body.tw-redesign .hero .container {
  position: relative;
  z-index: 2;
}
body.tw-redesign .hero .eyebrow {
  display: inline-block;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
body.tw-redesign .hero h1 {
  font-weight: 600;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
@media (min-width: 992px) {
  body.tw-redesign .hero h1 { font-size: 58px; }
}
body.tw-redesign .hero h1 .tw-accent {
  color: var(--accent);
  font-style: italic;
}
body.tw-redesign .hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
body.tw-redesign .hero .tw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  color: #E8CDA0;
  background: var(--ink);
}
body.tw-redesign .hero .btn.btn-secondary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 24px -10px rgba(185,139,62,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}
body.tw-redesign .hero .btn.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(185,139,62,.8);
}
body.tw-redesign .hero .btn.btn-white-outline {
  border-color: var(--ink);
  color: var(--ink);
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
body.tw-redesign .hero .btn.btn-white-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--page);
  transform: translateY(-3px);
}
body.tw-redesign .hero .hero-img-wrap img {
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
}

/* ---------- Product section ---------- */
body.tw-redesign .product-section {
  background: var(--linen);
  padding: 6.5rem 0;
}
body.tw-redesign .product-section .section-title {
  color: var(--walnut);
  font-size: 34px;
}
body.tw-redesign .product-section > .container > .row > div:first-child .btn {
  background: var(--ink);
  border-color: var(--ink);
}
body.tw-redesign .product-section .product-item .product-thumbnail {
  border-radius: 18px;
  box-shadow: 0 18px 40px -20px rgba(74,46,32,.35);
  transition: .4s cubic-bezier(.2,.7,.2,1);
}
body.tw-redesign .product-section .product-item:hover .product-thumbnail {
  top: -10px;
  box-shadow: 0 30px 50px -20px rgba(74,46,32,.5);
}
body.tw-redesign .product-section .product-item .product-thumbnail img,
body.tw-redesign .product-section .product-item img.product-thumbnail {
  border-radius: 18px;
  transition: transform .5s ease;
}
body.tw-redesign .product-section .product-item:hover img.product-thumbnail {
  transform: scale(1.04);
}
body.tw-redesign .product-section .product-item:before {
  display: none;
}
body.tw-redesign .product-section .product-item h3.product-title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--walnut);
}
body.tw-redesign .product-section .product-item strong.product-price {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
body.tw-redesign .product-section .product-item .icon-cross {
  background: var(--brass);
}

/* ---------- Why choose us ---------- */
body.tw-redesign .why-choose-section {
  background: var(--linen-deep);
  padding: 6.5rem 0;
}
body.tw-redesign .why-choose-section .section-title {
  color: var(--walnut);
  font-size: 32px;
}
body.tw-redesign .feature .icon:before {
  background: rgba(185,139,62,.22);
}
body.tw-redesign .feature h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--walnut);
}
body.tw-redesign .why-choose-section .img-wrap img {
  border-radius: 24px;
  box-shadow: 0 30px 60px -25px rgba(74,46,32,.4);
}

/* ---------- We help section ---------- */
body.tw-redesign .we-help-section {
  background: var(--linen);
  padding: 6.5rem 0;
}
body.tw-redesign .we-help-section .section-title {
  color: var(--walnut);
  font-size: 32px;
}
body.tw-redesign .we-help-section .imgs-grid .grid img {
  border-radius: 24px;
  box-shadow: 0 24px 50px -22px rgba(74,46,32,.35);
}
body.tw-redesign .custom-list li:before {
  border-color: var(--brass);
  background: var(--brass);
}

/* ---------- Popular product ---------- */
body.tw-redesign .popular-product {
  background: var(--linen);
}
body.tw-redesign .popular-product .product-item-sm .thumbnail img {
  border-radius: 16px;
  box-shadow: 0 14px 30px -16px rgba(74,46,32,.35);
}
body.tw-redesign .popular-product .product-item-sm .thumbnail:before {
  display: none;
}
body.tw-redesign .popular-product .product-item-sm h3 {
  font-family: var(--serif);
  color: var(--walnut);
}

/* ---------- Testimonials ---------- */
body.tw-redesign .testimonial-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(185,139,62,.10), transparent 60%),
    var(--ink);
  padding: 3rem 0 3.2rem 0;
  position: relative;
  overflow: hidden;
}
body.tw-redesign .testimonial-section .section-title {
  color: var(--linen);
  font-size: 22px;
  margin-bottom: 8px;
}
/* Aggregate rating — real fact, styled as a quiet pill badge (no per-slide stars implied) */
body.tw-redesign .testimonial-section > .container > .row > div p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(185,139,62,.35);
  border-radius: 999px;
  padding: 9px 20px;
  background: rgba(185,139,62,.06);
}

body.tw-redesign .testimonial-slider-wrap {
  margin-top: 4px;
}

/* Card */
body.tw-redesign .testimonial-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(185,139,62,.16);
  border-radius: 14px;
  padding: 22px 28px 16px;
  position: relative;
  box-shadow: 0 18px 36px -26px rgba(0,0,0,.6);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.tw-redesign .testimonial-block { padding: 20px 18px 14px; }
}
body.tw-redesign .testimonial-block blockquote {
  position: relative;
  padding-top: 0;
  margin-bottom: 10px;
}
body.tw-redesign .testimonial-block blockquote:before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 44px;
  color: var(--brass);
  opacity: .3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
body.tw-redesign .testimonial-block blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--linen);
  margin-bottom: 0;
}

/* No client photo — author-pic removed, name/role sit directly under a thin divider */
body.tw-redesign .testimonial-block .author-info {
  position: relative;
  padding-top: 10px;
}
body.tw-redesign .testimonial-block .author-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
body.tw-redesign .testimonial-block .author-info .author-pic {
  display: none;
}
body.tw-redesign .testimonial-block .author-info h3 {
  color: var(--brass-light);
  font-size: 13px;
  letter-spacing: .01em;
  margin-bottom: 2px;
}
body.tw-redesign .testimonial-block .author-info .position {
  color: rgba(250,246,239,.5);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav arrows — thin outline circles, brand-consistent with hero/outline buttons.
   Constrained to the card's max-width so they hug the card instead of floating
   at the full container edges. */
body.tw-redesign .testimonial-slider-wrap #testimonial-nav {
  max-width: 640px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
body.tw-redesign .testimonial-slider-wrap #testimonial-nav > span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: 1px solid rgba(185,139,62,.35);
  color: var(--brass-light);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
body.tw-redesign .testimonial-slider-wrap #testimonial-nav .prev { left: -4px; }
body.tw-redesign .testimonial-slider-wrap #testimonial-nav .next { right: -4px; }
body.tw-redesign .testimonial-slider-wrap #testimonial-nav > span:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--linen);
  transform: scale(1.06);
}

/* Dots — slim dash instead of plain circle */
body.tw-redesign .testimonial-slider-wrap .tns-nav button:before {
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background-color: rgba(255,255,255,.18);
}
body.tw-redesign .testimonial-slider-wrap .tns-nav button:hover:before,
body.tw-redesign .testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
  background-color: var(--brass);
}

/* ---------- Blog / showroom ---------- */
body.tw-redesign .blog-section {
  background: var(--linen);
}
body.tw-redesign .blog-section .section-title {
  color: var(--walnut);
  font-size: 32px;
}
body.tw-redesign .blog-section .post-entry .post-thumbnail img {
  border-radius: 18px;
  box-shadow: 0 20px 40px -20px rgba(74,46,32,.4);
  transition: transform .5s ease, opacity .3s ease;
}
body.tw-redesign .blog-section .post-entry:hover .post-thumbnail img {
  transform: scale(1.03);
  opacity: 1;
}
body.tw-redesign .blog-section .post-content-entry h3 a {
  font-family: var(--serif);
  color: var(--walnut);
}
body.tw-redesign .blog-section .more {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}

/* ---------- Footer ---------- */
body.tw-redesign .footer-section {
  background: var(--ink) !important;
}
body.tw-redesign .footer-section a {
  color: var(--linen);
}
body.tw-redesign .footer-section a:hover {
  color: var(--brass-light);
}
body.tw-redesign .footer-section .subscription-form h3 {
  color: var(--brass-light);
}
body.tw-redesign .footer-section .footer-logo-wrap .footer-logo {
  color: var(--linen);
}
body.tw-redesign .footer-section p {
  color: rgba(250,246,239,.6);
}
body.tw-redesign .footer-section .btn.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
body.tw-redesign .footer-section .btn.btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}
body.tw-redesign .footer-section .custom-social li a {
  border: 1px solid rgba(185,139,62,.3);
  border-radius: 50%;
  color: var(--brass-light);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
body.tw-redesign .footer-section .custom-social li a:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-3px);
}
body.tw-redesign .footer-section .border-top.copyright {
  border-top-color: rgba(250,246,239,.14) !important;
}
body.tw-redesign .footer-section .border-top.copyright a {
  color: rgba(250,246,239,.55);
}

/* ---------- Generic content sections (team grid, notices, forms) ---------- */
body.tw-redesign .untree_co-section {
  background: var(--linen);
}
body.tw-redesign .untree_co-section .section-title {
  color: var(--walnut);
}
body.tw-redesign .untree_co-section img.mb-5 {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 20px 40px -20px rgba(74,46,32,.35);
}
body.tw-redesign .untree_co-section h3 a {
  font-family: var(--serif);
  color: var(--walnut);
  text-decoration: none;
}
body.tw-redesign .untree_co-section .position {
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 12px;
}
body.tw-redesign .untree_co-section .lead {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--walnut);
}
body.tw-redesign .untree_co-section h2 {
  font-family: var(--serif);
  color: var(--walnut);
}
body.tw-redesign .untree_co-section .eyebrow {
  display: inline-block;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Forms */
body.tw-redesign .form-control {
  border-radius: 10px;
  border-color: rgba(74,46,32,.15);
  padding: 10px 14px;
}
body.tw-redesign .form-control:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 .2rem rgba(185,139,62,.15);
}
body.tw-redesign label.text-black {
  font-weight: 700;
  color: var(--walnut) !important;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Contact service blocks + map */
body.tw-redesign .service .service-icon {
  background: var(--ink);
  color: var(--linen);
}
body.tw-redesign .service-contents p {
  color: var(--walnut);
  font-weight: 600;
}
body.tw-redesign .ratio {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -25px rgba(74,46,32,.35);
}

/* Buttons used off the homepage */
body.tw-redesign .btn-outline-black {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: 30px;
  font-weight: 700;
  transition: .25s ease;
}
body.tw-redesign .btn-outline-black:hover {
  background: var(--ink);
  color: var(--linen);
}
body.tw-redesign .btn-primary-hover-outline {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--ink);
  border-radius: 30px;
  font-weight: 700;
  padding: 12px 30px;
  transition: .25s ease;
}
body.tw-redesign .btn-primary-hover-outline:hover {
  background: transparent;
  color: var(--brass);
}

/* Thank-you / notice icon */
body.tw-redesign .thankyou-icon {
  color: var(--brass);
}
body.tw-redesign .thankyou-icon:before {
  background: rgba(185,139,62,.18);
}
body.tw-redesign .text-primary {
  color: var(--ink) !important;
}

/* =====================================================================
   REFINEMENT PASS — logo sizing, uniform product/blog cards, rhythm
   ===================================================================== */

/* ---------- Brand logo ---------- */
body.tw-redesign .custom-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
}
body.tw-redesign .custom-navbar .navbar-brand img {
  height: 84px !important;
  width: auto;
  transition: height .3s ease;
}
body.tw-redesign .custom-navbar.tw-scrolled .navbar-brand img {
  height: 62px !important;
}
body.tw-redesign .footer-section .footer-logo img {
  height: 74px !important;
  width: auto;
}
@media (max-width: 767.98px) {
  body.tw-redesign .custom-navbar .navbar-brand img,
  body.tw-redesign .custom-navbar.tw-scrolled .navbar-brand img { height: 54px !important; }
  body.tw-redesign .footer-section .footer-logo img { height: 58px !important; }
}

/* ---------- Uniform product cards (index / services / shop) ---------- */
body.tw-redesign .product-section .row {
  row-gap: 12px;
  align-items: stretch;
}
/* flex only the columns that hold a product card — leaves the section
   intro column (heading + copy) laying out normally */
body.tw-redesign .product-section .row > [class*="col-"]:has(> .product-item) {
  display: flex;
}
body.tw-redesign .product-section .product-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 44px;
}
/* the media box — identical footprint for every card, tinted so
   transparent PNG renders and full-bleed photos read the same */
body.tw-redesign .product-section .product-item img.product-thumbnail,
body.tw-redesign .product-section .product-item .product-thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 8%;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px -22px rgba(74,46,32,.32);
  border: 1px solid rgba(74,46,32,.06);
}
body.tw-redesign .product-section .product-item:hover img.product-thumbnail,
body.tw-redesign .product-section .product-item:hover .product-thumbnail {
  top: 0;
  transform: translateY(-8px);
  box-shadow: 0 34px 54px -24px rgba(74,46,32,.42);
}
body.tw-redesign .product-section .product-item:hover img.product-thumbnail {
  transform: translateY(-8px) scale(1.02);
}
body.tw-redesign .product-section .product-item h3.product-title {
  font-size: 18px;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
body.tw-redesign .product-section .product-item strong.product-price {
  margin-top: auto;
  margin-bottom: 4px;
}
body.tw-redesign .product-section .product-item .icon-cross {
  width: 38px;
  height: 38px;
}

/* ---------- Popular product — horizontal cards ---------- */
body.tw-redesign .popular-product .row { row-gap: 22px; }
body.tw-redesign .popular-product .product-item-sm { align-items: center; }
body.tw-redesign .popular-product .product-item-sm .thumbnail {
  flex: 0 0 132px;
  margin-right: 18px;
}
body.tw-redesign .popular-product .product-item-sm .thumbnail img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 14px 30px -18px rgba(74,46,32,.34);
  border: 1px solid rgba(74,46,32,.06);
}
body.tw-redesign .popular-product .product-item-sm h3 {
  font-size: 16px;
  line-height: 1.3;
}

/* ---------- Blog / workshop cards ---------- */
body.tw-redesign .blog-section .row { align-items: stretch; }
body.tw-redesign .blog-section .row > [class*="col-"]:has(> .post-entry) { display: flex; }
body.tw-redesign .blog-section .post-entry {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
body.tw-redesign .blog-section .post-entry .post-thumbnail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 7%;
  border-radius: 18px;
  border: 1px solid rgba(74,46,32,.06);
}
body.tw-redesign .blog-section .post-entry:hover .post-thumbnail img {
  opacity: 1;
}
body.tw-redesign .blog-section .post-entry .post-content-entry h3 {
  font-size: 18px;
  line-height: 1.35;
  min-height: 2.5em;
}
body.tw-redesign .blog-section .post-entry .post-content-entry .meta span {
  color: rgba(74,46,32,.6);
}

/* ---------- Section rhythm / consistency ---------- */
body.tw-redesign .blog-section { padding: 6.5rem 0; }
body.tw-redesign .blog-section.before-footer-section,
body.tw-redesign .before-footer-section { padding-bottom: 8rem !important; }
body.tw-redesign .popular-product { padding: 0 0 6.5rem 0; }
body.tw-redesign .we-help-section .imgs-grid .grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.tw-redesign .hero .hero-img-wrap img {
  border-radius: 20px;
}

/* ---------- Bare hero header (shop / cart / checkout) — no trailing gap ---------- */
body.tw-redesign .hero .intro-excerpt h1:last-child { margin-bottom: 0; }

/* ---------- Footer accent sofa — sits in the footer's own top strip,
   never pokes up into the product cards above ---------- */
body.tw-redesign .footer-section { position: relative; overflow: hidden; }
body.tw-redesign .footer-section .sofa-img {
  top: -46px;
  right: 3%;
  left: auto;
  z-index: 0;
  opacity: .92;
  pointer-events: none;
}
body.tw-redesign .footer-section .sofa-img img {
  max-width: 390px;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.55));
}
body.tw-redesign .footer-section .row { position: relative; z-index: 1; }
@media (max-width: 991.98px) {
  body.tw-redesign .footer-section .sofa-img { display: none; }
}

