/*
 * Procaphe Home Blocks — CSS targeting Flatsome native shortcode output
 * Post 18548 structure-based selectors only — no layout overrides
 */

:root {
  --pc-main:  #fdcc7f;
  --pc-hover: #ffb746;
  --pc-dark:  #344943;
  --pc-brown: #8d5e2f;
  --pc-cream: #f7e8d3;
  --pc-bg:    #fff7ec;
  --pc-text:  #492d25;
}

/* =========================================================
   HERO  —  .section.home-hero
   ========================================================= */
.section.home-hero {
  padding-top: 60px;
  padding-bottom: 0;
}

.section.home-hero h2 {
  color: #fff;
}

.section.home-hero .stat-box {
  text-align: center;
}

.section.home-hero .stat-box strong {
  color: var(--pc-main);
  display: block;
  line-height: 1.2;
}

.section.home-hero .stat-box span {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

/* ux_text wrapper inside hero-stats row */
.section.home-hero .row_inner.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
  padding-top: 20px;
}

/* =========================================================
   PARTNER BLOCK  —  .section.partner-block
   Styled after .section_cate from front-page.php
   ========================================================= */
.section.partner-block h3 {
  font-size: 26px;
  line-height: 1.4;
  color: var(--pc-dark);
}

/* ---- category card: replicates .section_cate .item ---- */
.section.partner-block .box.box-category {
  position: relative;
  min-height: 200px;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--pc-cream);
  padding-left: 16px;
  text-decoration: none;
}

/* left brown half */
.section.partner-block .box.box-category::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 50%; height: 100%;
  background: var(--pc-brown);
  z-index: 0;
}

/* image — positioned absolute on the right, slides on hover */
.section.partner-block .box.box-category .box-image {
  position: absolute !important;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  /* fixed size — không bị slider JS tính lại */
  width: 200px !important;
  height: auto !important;
  z-index: 1;
  transition: right 0.3s;
  padding: 0 !important;
}
.section.partner-block .box.box-category:hover .box-image {
  right: 0;
}
/* inner wrapper div (empty class) không tạo box riêng */
.section.partner-block .box.box-category .box-image > div {
  display: contents;
}
.section.partner-block .box.box-category .box-image img {
  display: block !important;
  width: 200px !important;
  height: auto !important;
  max-width: none !important;
  position: static !important;
  transform: none !important;
  border-radius: 0 !important;
}

/* text — left side, above the ::before layer */
.section.partner-block .box.box-category .box-text {
  position: relative;
  z-index: 2;
  width: 110px;
  flex-shrink: 0;
  background: transparent !important;
  padding: 0;
}
.section.partner-block .box.box-category .box-text .box-text-inner {
  padding: 0;
}
.section.partner-block .box.box-category .box-text h5.header-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 6px;
  line-height: 1.3;
}
.section.partner-block .box.box-category .box-text .count {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  text-transform: none;
  margin: 0;
}

/* =========================================================
   FARM TO CUP  —  .section.farm-to-cup
   ========================================================= */

/* Tab nav — Flatsome outputs: .tabbed-content > ul.nav.nav-outline > li.tab > a */
.section.farm-to-cup .tabbed-content > ul.nav.nav-outline {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: none;
  margin-bottom: 24px;
}

.section.farm-to-cup .tabbed-content > ul.nav.nav-outline > li.tab > a {
  border-radius: 20px !important;
  border: 1px solid #ddd !important;
  padding: 6px 20px !important;
  color: #333;
  transition: all 0.3s;
  background: transparent !important;
  font-size: 14px;
}

.section.farm-to-cup .tabbed-content > ul.nav.nav-outline > li.tab.active > a,
.section.farm-to-cup .tabbed-content > ul.nav.nav-outline > li.tab > a:hover {
  background: var(--pc-main) !important;
  border-color: var(--pc-main) !important;
  color: var(--pc-dark) !important;
}

/* =========================================================
   QUOTE BANNER  —  standalone section (no class) with ux_banner
   ========================================================= */
/* .section:not([class*="home-hero"]):not([class*="partner"]):not([class*="farm"]):not([class*="product-home"]):not([class*="testimonial"]) .banner {
  border-radius: 20px;
  overflow: hidden;
} */

/* =========================================================
   PRODUCT HOME SECTIONS  —  .section.product-home-section
   ========================================================= */

/* Banner column — fixed height, không bị Flickity JS ảnh hưởng */
.section.product-home-section .banner {
  border-radius: 16px;
  overflow: hidden;
}
.section.product-home-section .banner .banner-inner {
  min-height: 400px !important;
}

/* Col chứa banner fill đủ chiều cao */
.section.product-home-section .large-4 > .col-inner,
.section.product-home-section .large-8 > .col-inner {
  height: 100%;
}

/* =========================================================
   PRODUCT CARD — Flatsome .product-small .box
   Styled to match .product-item from front-page.php
   ========================================================= */


/* Remove border-bottom on farm-to-cup product boxes */
.section.farm-to-cup .product-small.col .box,
.section.farm-to-cup .product-small.col .box-image,
.section.farm-to-cup .product-small.col .box-text {
  border-bottom: none !important;
}
/* Xoá pseudo-element ::after tạo border-bottom từ .row-dashed */
.section.farm-to-cup .col:after {
  border-bottom: none !important;
  display: none !important;
}

/* Apply to both home product sections and farm-to-cup tabs */
.section.product-home-section .product-small.col .box,
.section.farm-to-cup .product-small.col .box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  background: #fff;
  transition: transform 0.3s;
}
.section.product-home-section .product-small.col .box:hover,
.section.farm-to-cup .product-small.col .box:hover {
  transform: translateY(-4px);
}

/* Image — product-home-section: fixed height khớp banner 400px (400 - ~90px text = 310px) */
.section.product-home-section .product-small.col .box .box-image {
  overflow: hidden;
  width: 100%;
  height: 350px !important;
  flex-shrink: 0;
}

/* Image — farm-to-cup: aspect-ratio vì không bị Flickity absolute slide */
.section.farm-to-cup .product-small.col .box .box-image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.section.product-home-section .product-small.col .box .box-image a,
.section.farm-to-cup .product-small.col .box .box-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.section.product-home-section .product-small.col .box .box-image img,
.section.farm-to-cup .product-small.col .box .box-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.section.product-home-section .product-small.col .box:hover .box-image img,
.section.farm-to-cup .product-small.col .box:hover .box-image img {
  transform: scale(1.08);
}

/* Loại bỏ các wrapper rỗng gây thêm chiều cao */
.section.product-home-section .product-small.col .box .box-text,
.section.farm-to-cup .product-small.col .box .box-text {
  display: flex;
  flex-direction: column;
}
.section.product-home-section .product-small.col .box .image-tools,
.section.farm-to-cup .product-small.col .box .image-tools {
  display: none !important;
}

/* Text area padding */
.section.product-home-section .product-small.col .box .box-text,
.section.farm-to-cup .product-small.col .box .box-text {
  padding: 12px 14px 14px;
}

/* Product name */
.section.product-home-section .product-small.col .box .title-wrapper,
.section.farm-to-cup .product-small.col .box .title-wrapper {
  margin-bottom: 8px;
}
.section.product-home-section .product-small.col .box .title-wrapper .woocommerce-loop-product__title,
.section.farm-to-cup .product-small.col .box .title-wrapper .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.6em;
  margin: 0;
  color: var(--pc-text);
}

/* Price — hidden */
.section.product-home-section .product-small.col .box .price-wrapper,
.section.farm-to-cup .product-small.col .box .price-wrapper {
  display: none !important;
}

/* Add to cart button — full width, rounded, border style */
.section.product-home-section .product-small.col .box .button,
.section.farm-to-cup .product-small.col .box .button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 40px;
  border-radius: 25px !important;
  background: #fff !important;
  border: 1px solid var(--pc-text) !important;
  color: var(--pc-text) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.section.product-home-section .product-small.col .box .button:hover,
.section.farm-to-cup .product-small.col .box .button:hover {
  background: var(--pc-dark) !important;
  border-color: var(--pc-dark) !important;
  color: #fff !important;
}

/* =========================================================
   TESTIMONIALS  —  .section.testimonial-home
   ========================================================= */
.section.testimonial-home .testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  height: 100%;
  box-sizing: border-box;
}

.section.testimonial-home .testimonial blockquote,
.section.testimonial-home .testimonial .testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.section.testimonial-home .testimonial .testimonial-image img {
  border-radius: 50%;
  border: 3px solid var(--pc-cream);
}

/* =========================================================
   BLOG SECTION  —  section[bg_color="rgb(242,236,228)"]
   blog_posts style="normal" columns="3"
   ========================================================= */

/* =========================================================
   UX BLOCK 18548 - SECTION GUTTER FIX (2026-04-21)
   Fix: Tablet/mobile sections touching viewport edges.
   ========================================================= */
@media (max-width: 1100px) {
  body.postid-18548 #main .section .section-content > .row,
  body.single-blocks #main .section .section-content > .row,
  body.postid-18548 #main .section .section-content .row,
  body.single-blocks #main .section .section-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.postid-18548 #main .section .section-content > .row > .col,
  body.single-blocks #main .section .section-content > .row > .col {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  /* Avoid dynamic #col-xxxx selectors from UX Builder.
     Target stable banner column shape in product-home-section instead. */
  body.postid-18548 #main .section .section-content > .row > .col > .col-inner,
  body.single-blocks #main .section .section-content > .row > .col > .col-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 849px) {
  body.postid-18548 #main .section .section-content > .row,
  body.single-blocks #main .section .section-content > .row,
  body.postid-18548 #main .section .section-content .row,
  body.single-blocks #main .section .section-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.postid-18548 #main .section .section-content > .row > .col,
  body.single-blocks #main .section .section-content > .row > .col {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  /* Flatsome default gutter reset on mobile for block preview */
  body.postid-18548 #main .row-dashed .col-inner,
  body.postid-18548 #main .row-solid .col-inner,
  body.single-blocks #main .row-dashed .col-inner,
  body.single-blocks #main .row-solid .col-inner {
    padding: 0 !important;
  }
}

/* Tablet sizing for category banners and product cards */
@media (min-width: 550px) and (max-width: 1100px) {
  .cate-banner-1.banner,
  .cate-banner-2.banner,
  .cate-banner-3.banner,
  .cate-banner-1 .banner,
  .cate-banner-2 .banner,
  .cate-banner-3 .banner {
    padding-top: 339px !important;
  }

  .section.product-home-section .product-small.col .box .box-image {
    height: 272px !important;
    width: 135% !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Tablet: normalize Flatsome packery banner-grid to a true 2-column mosaic.
     Scope by stable Flatsome classes instead of dynamic UX Builder ids. */
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 16px;
    height: auto !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative !important;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .col.grid-col {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .grid-col.grid-col-1 {
    grid-row: span 2;
    height: auto !important;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .grid-col.grid-col-1-2 {
    height: auto !important;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .col.grid-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .col.grid-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .col.grid-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small > .col.grid-col:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .col-inner,
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box,
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box-image,
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box-image > a,
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box-image > a > div,
  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box-image img {
    height: 100%;
  }

  .section .section-content.relative > .banner-grid-wrapper > .banner-grid.row.row-grid.row-small .box-image img {
    display: block;
    object-fit: cover;
  }
}


@media (max-width: 767.99px) {
  .section.product-home-section .product-small.col .box .box-image {
    height: 210px !important;
    width: 120% !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .section.product-home-section .product-small.col .box .box-text, .section.farm-to-cup .product-small.col .box .box-text {
    padding: 10px 8px 8px;
  }
}















































/* =====================================
   COFFEEVIBE HOME - MATCHED LAYOUT
   Dùng cho UX Block / Flatsome
   ===================================== */

:root{
  --cv-primary:#b6865c;
  --cv-primary-2:#9a6d47;
  --cv-dark:#140c08;
  --cv-dark-soft:#2a1b12;
  --cv-text:#2d241f;
  --cv-sub:#75665c;
  --cv-light:#f5f2ee;
  --cv-light-2:#eee7df;
  --cv-border:#d1c2b5;
  --cv-radius:12px;
  --cv-shadow:0 10px 22px rgba(28,18,13,.08);
  --cv-container:1180px;
}

.cv-homepage{
  background:var(--cv-light);
  color:var(--cv-text);
}

.cv-homepage p,
.cv-homepage h1,
.cv-homepage h2,
.cv-homepage h3,
.cv-homepage h4{
  margin-bottom:0;
}

.cv-homepage .button{
  margin:0 10px 0 0;
  min-height:46px;
  line-height:44px;
  padding:0 28px;
  border-radius:4px;
  font-weight:700;
  letter-spacing:.02em;
  box-shadow:none;
  text-transform:none;
}

.cv-hero{
  background-color:#1b100a;
}

.cv-hero .banner-bg{
  transform:none !important;
}

.cv-hero .text-box{
  max-width:560px;
}

.cv-hero-box{
  padding:0;
}

.cv-script{
  color:#d5aa83;
  font-size:40px;
  line-height:1;
  font-style:italic;
  font-family:"Brush Script MT","Segoe Script",cursive;
  margin-bottom:18px;
}

.cv-hero-title{
  color:#fff;
  font-size:66px;
  font-weight:700;
  line-height:1.06;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin-bottom:20px;
}

.cv-hero-title span,
.cv-hero-title strong,
.cv-hero-title em,
.cv-hero-title b{
  color:var(--cv-primary);
}

.cv-hero-title br + *{
  color:var(--cv-primary);
}

.cv-hero-desc{
  color:rgba(255,255,255,.9);
  font-size:22px;
  line-height:1.72;
  margin-bottom:28px;
}

.cv-btn-primary.button,
.cv-homepage .button.primary{
  background:var(--cv-primary);
  border:1px solid var(--cv-primary);
  color:#fff;
}

.cv-btn-primary.button:hover,
.cv-homepage .button.primary:hover{
  background:var(--cv-primary-2);
  border-color:var(--cv-primary-2);
  color:#fff;
}

.cv-btn-outline.button{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:#fff !important;
}

.cv-btn-outline.button:hover{
  background:#fff;
  border-color:#fff;
  color:var(--cv-dark) !important;
}

.cv-feature-strip{
  border-top:1px solid rgba(255,255,255,.06);
  background:#140c08;
}

.cv-feature-strip .row{
  row-gap:0;
}

.cv-feature-box{
  margin-bottom:0;
}

.cv-feature-box .icon-box{
  align-items:center;
}

.cv-feature-box .icon-box-img{
  width:36px;
  min-width:36px;
}

.cv-feature-box .icon-box-img i{
  font-size:26px;
}

.cv-feature-title{
  color:#f1d2b4;
  font-size:17px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:6px;
  text-transform:uppercase;
}

.cv-feature-desc{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.45;
}

.cv-heading-row{
  margin-bottom:20px;
}

.cv-heading-row .col{
  padding-bottom:0;
}

.cv-section-heading{
  text-align:center;
}

.cv-section-heading .cv-subtitle, .cv-script > p{
  color:#c6a180;
  font-size:34px;
  font-style:italic;
  line-height:1;
  font-family:"Brush Script MT","Segoe Script",cursive;
  margin-bottom:10px;
}

.cv-section-heading h2{
  color:var(--cv-text);
  font-size:31px;
  line-height:1.1;
  letter-spacing:.02em;
  font-weight:500;
  text-transform:uppercase;
}

.cv-section-heading-light h2{
  color:#fff;
}

.cv-heading-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
}

.cv-heading-divider span{
  position:relative;
  width:92px;
  height:2px;
  background:#d7c7b8;
  display:block;
}

.cv-heading-divider span:before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:10px;
  margin:-5px 0 0 -5px;
  border-radius:50%;
  background:var(--cv-primary);
}

.cv-section-heading-left{
  text-align:left;
}

.cv-heading-line{
  margin-top:12px;
  width:100%;
  max-width:640px;
  height:2px;
  background:linear-gradient(90deg, rgba(190,145,101,.7), rgba(190,145,101,.15));
}

/* Use heading underline as pseudo-element for stable centering with text */
.cv-section-heading.cv-section-heading-left.cv-section-heading-light h2{
  position:relative;
  display:inline-block;
  padding-bottom:14px;
}

.cv-section-heading.cv-section-heading-left.cv-section-heading-light h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:120px;
  height:2px;
  background:linear-gradient(90deg, rgba(190,145,101,.15), rgba(190,145,101,.75), rgba(190,145,101,.15));
}

.cv-section-heading.cv-section-heading-left.cv-section-heading-light .cv-heading-line{
  display:none;
}

.cv-viewall.button{
  min-height:42px;
  line-height:40px;
  padding:0 22px;
  background:transparent;
  border:1px solid #c6b8aa;
  color:#5a4c41 !important;
  font-size:13px;
  font-weight:700;
}

.cv-viewall.button:hover{
  border-color:var(--cv-primary);
  color:var(--cv-primary) !important;
  background:#fff;
}

.cv-viewall-light.button{
  border-color:rgba(255,255,255,.35);
  color:#fff !important;
}

.cv-viewall-light.button:hover{
  background:#fff;
  color:var(--cv-dark) !important;
  border-color:#fff;
}



.cv-beans-section,
.cv-combo-section{
  background:#f5f2ee;
}

.cv-beans-section{
  background:#fff;
}

.cv-product-slider{
  margin-top:10px;
}

.cv-homepage .flickity-viewport{
  overflow:hidden;
}

.cv-homepage .product-small{
  background:transparent;
  box-shadow:none;
}

.cv-homepage .product-small.box{
  border:none;
}

.cv-homepage .product-small .box-image{
  background:#fff;
  border-radius:0;
  padding:0 14px 8px;
}

.cv-homepage .product-small .box-image img{
  width:100%;
  aspect-ratio:1/1.2;
  object-fit:contain;
}

.cv-homepage .product-small .box-text{
  padding:0 8px 0;
  text-align:left;
}

.cv-homepage .product-small .title-wrapper{
  margin-bottom:0;
}

.cv-homepage .product-title{
  color:#39302a;
  font-size:15px;
  line-height:1.45;
  min-height:44px;
  margin:0 0 2px 0;
  font-weight:500;
}

.cv-homepage .box-text p.name.product-title{
  margin-bottom:2px;
}

.cv-homepage .category{
  display:none;
}

.cv-homepage .price-wrapper{
  margin-top:6px;
}

.cv-homepage .price{
  color:#2c2420;
  font-size:15px;
  font-weight:700;
}

.cv-homepage del .woocommerce-Price-amount{
  color:#a1958b;
  font-size:13px;
}

.cv-homepage ins{
  text-decoration:none;
}

.cv-homepage .star-rating{
  font-size:11px;
  margin-top:6px;
  color:#f0b44f;
}

.cv-homepage .star-rating:before,
.cv-homepage .star-rating span:before{
  color:#f0b44f;
}

.cv-homepage .badge-container{
  margin:0;
  top:4px;
  left:8px;
}

.cv-homepage .badge{
  background:#b97b3f;
  color:#fff;
  border:none;
  border-radius:10px;
  font-size:10px;
  font-weight:700;
  line-height:1;
  padding:6px 8px;
  min-height:auto;
  min-width:auto;
  box-shadow:none;
}

.cv-homepage .flickity-prev-next-button{
  width:34px;
  height:34px;
  border:none;
  background:#8b5d38;
  opacity:1;
  box-shadow:none;
}

.cv-homepage .flickity-prev-next-button svg{
  fill:#fff;
  width:16px;
  height:16px;
}

/* Remove background from Flickity nav buttons */
.cv-homepage .flickity-button.flickity-prev-next-button.previous,
.cv-homepage .flickity-button.flickity-prev-next-button.next{
  background:transparent !important;
  box-shadow:none !important;
}

.cv-product-slider-beans .flickity-prev-next-button.previous{
  left:-12px;
}

.cv-product-slider-beans .flickity-prev-next-button.next{
  right:-12px;
}

.cv-tools-section{
  position:relative;
  background-color:#1b120d;
}

.cv-tools-section .section-bg-overlay{
  opacity:1 !important;
}

.cv-tools-section .product-small .box-image{
  background:#fff;
  border-radius:10px;
  border: 1px solid saddlebrown;
}

.cv-tools-section .product-small .box-text{
  padding:10px 8px 0;
}

.cv-tools-section .product-title,
.cv-tools-section .price{
  color:#fff;
}

.cv-tools-section del .woocommerce-Price-amount{
  color:rgba(255,255,255,.45);
}

/* .cv-tools-section .flickity-prev-next-button{
  background:#a06d42;
} */

.cv-combo-grid .box{
  background:#fff;
  border:1px solid #ece3da;
  border-radius:8px;
  overflow:hidden;
  padding:14px;
  min-height:164px;
}

.cv-combo-grid .box-image{
  width:38%;
  float:left;
  padding:0;
  background:transparent;
}

.cv-combo-grid .box-image img{
  aspect-ratio:1/1;
  object-fit:contain;
}

.cv-combo-grid .box-text{
  width:62%;
  float:left;
  padding:8px 0 0 14px;
  text-align:left;
}

.cv-combo-grid .product-title{
  min-height:unset;
  font-size:16px;
  margin-bottom:8px;
}

.cv-combo-grid .price{
  color:#cb5e55;
  font-size:15px;
}

.cv-combo-grid del .woocommerce-Price-amount{
  color:#ab9f95;
}

.cv-combo-grid .badge{
  background:#cb5e55;
  border-radius:999px;
  font-size:11px;
  padding:7px 9px;
}

.cv-combo-grid .badge-container{
  top:auto;
  bottom:10px;
  right:12px;
  left:auto;
}

.cv-newsletter{
  background:#eee7df;
  border-top:1px solid rgba(0,0,0,.03);
}

.cv-newsletter-image img{
  max-width:120px;
}

.cv-newsletter-text .cv-newsletter-label{
  color:#9d826a;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  margin-bottom:8px;
}

.cv-newsletter-text h3{
  color:#342a25;
  font-size:20px;
  line-height:1.45;
  font-weight:600;
}

.cv-newsletter .wpcf7-form{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0;
}

.cv-newsletter .wpcf7-form p{
  margin:0;
}

.cv-newsletter .wpcf7-form-control-wrap{
  flex:1;
  display:block;
}

.cv-newsletter input[type="email"]{
  width:100%;
  height:46px;
  border-radius:4px;
  border:1px solid #d5cbc2;
  background:#fff;
  box-shadow:none;
  padding:0 16px;
  font-size:14px;
}

.cv-newsletter .wpcf7-submit,
.cv-newsletter input[type="submit"]{
  min-width:130px;
  height:46px;
  border-radius:4px;
  border:none;
  background:#1e130d;
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:0 18px;
}

.cv-newsletter .wpcf7-submit:hover,
.cv-newsletter input[type="submit"]:hover{
  background:var(--cv-primary);
}

@media (min-width: 850px){
  .cv-blog-section .section-content > .row:first-child,
  .cv-beans-section .section-content > .row:first-child,
  .cv-combo-section .section-content > .row:first-child{
    align-items:flex-start;
  }

  .cv-heading-row > .col:first-child{
    display:flex;
    justify-content:center;
  }

  .cv-heading-row > .col:first-child .cv-section-heading{
    width:100%;
  }
}

@media (max-width: 1199px){
  :root{
    --cv-container:1120px;
  }

  .cv-hero-title{
    font-size:58px;
  }

  .cv-hero-desc{
    font-size:20px;
  }
}

@media (max-width: 849px){
  .cv-homepage .section-content.relative,
  .cv-homepage .row{
    max-width:100%;
  }

  .cv-hero{
    min-height:560px;
  }

  .cv-hero .text-box{
    max-width:100%;
    padding-right:20px;
  }

  .cv-script{
    font-size:30px;
    margin-bottom:14px;
  }

  .cv-hero-title{
    font-size:38px;
    line-height:1.15;
    margin-bottom:14px;
  }

  .cv-hero-desc{
    font-size:16px;
    line-height:1.7;
    margin-bottom:22px;
  }

  .cv-homepage .button{
    min-width:0;
    padding:0 18px;
    margin:0 8px 10px 0;
  }

  .cv-feature-strip .col{
    padding-bottom:10px;
  }

  .cv-heading-row,
  .cv-heading-row .text-right{
    text-align:center !important;
  }

  .cv-heading-line{
    max-width:100%;
  }

  .cv-viewall.button{
    margin-top:6px;
  }

  .cv-homepage .flickity-prev-next-button{
    width:30px;
    height:30px;
  }

  .cv-product-slider-beans .flickity-prev-next-button.previous,
  .cv-product-slider-beans .flickity-prev-next-button.next{
    left:0;
    right:0;
  }

  .cv-combo-grid .box{
    min-height:auto;
  }

  .cv-newsletter .wpcf7-form{
    flex-direction:column;
    align-items:stretch;
  }

  .cv-newsletter .wpcf7-submit,
  .cv-newsletter input[type="submit"]{
    width:100%;
  }
}

@media (max-width: 549px){
  .cv-homepage{
    overflow:hidden;
  }

  .cv-script{
    font-size:26px;
  }

  .cv-hero-title{
    font-size:30px;
  }

  .cv-hero-desc{
    font-size:14px;
  }

  .cv-section-heading .cv-subtitle{
    font-size:28px;
  }

  .cv-section-heading h2{
    font-size:24px;
  }

  .cv-feature-title{
    font-size:15px;
  }

  .cv-feature-desc{
    font-size:13px;
  }


  .cv-homepage .product-title{
    font-size:14px;
    min-height:auto;
  }

  .cv-combo-grid .box-image,
  .cv-combo-grid .box-text{
    float:none;
    width:100%;
  }

  .cv-combo-grid .box-text{
    padding:12px 0 0 0;
  }

  .cv-newsletter-text h3{
    font-size:18px;
    line-height:1.4;
  }
}


/* Fix căn giữa tổng thể section homepage */
.cv-homepage,
.cv-homepage > .section-content,
.cv-homepage .section-content,
.cv-homepage .container,
.cv-homepage .row{
  margin-left:auto;
  margin-right:auto;
}

.cv-homepage{
  width:100%;
}

.cv-homepage .section-content{
  width:100%;
}

.cv-homepage .row{
  width:100%;
}


/* ===== Full width cho homepage wrapper ===== */
.cv-homepage{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding-left:0;
  padding-right:0;
}

/* Không ép mọi row full-width nữa */
.cv-homepage .row{
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
}

/* Hero banner phải tràn toàn màn hình */
.cv-homepage .cv-hero,
.cv-homepage .cv-hero .section-content,
.cv-homepage .cv-hero .banner,
.cv-homepage .cv-hero .banner-inner,
.cv-homepage .cv-hero .banner-bg{
  width:100%;
  max-width:100%;
}

/* Nếu Flatsome bọc trong container thì phá giới hạn */
.cv-homepage > .section-content,
.cv-homepage .section-content{
  width:100%;
  max-width:100%;
  padding-left:0;
  padding-right:0;
}

/* Chỉ text bên trong hero mới theo container */
.cv-homepage .cv-hero .text-box{
  max-width:560px;
}

/* =========================================================
   HOME-HOME visual sync overrides (2026-04-22)
   Keep this block at file end so it wins over legacy rules.
   ========================================================= */

.cv-homepage {
  --cv-container: 1200px;
  background: #f3efea;
  color: #2e2520;
  overflow-x: clip;
}

.cv-homepage .row {
  max-width: var(--cv-container);
}

.cv-homepage .section {
  padding: 56px 0;
}

.cv-homepage .section.cv-hero,
.cv-homepage .cv-feature-strip {
  padding: 0;
}

.cv-homepage .cv-hero {
  background: #140d08;
}

.cv-homepage .cv-hero-title {
  font-size: 72px;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.cv-homepage .cv-hero-desc {
  font-size: 31px;
  max-width: 720px;
}

.cv-homepage .button,
.cv-homepage .button.primary,
.cv-homepage .cv-btn-outline.button {
  min-height: 52px;
  line-height: 50px;
  padding: 0 34px;
  border-radius: 6px;
  font-size: 16px;
}

.cv-homepage .cv-feature-strip {
  background: transparent;
  border-top: 0;
  position: relative;
  z-index: 6;
  margin-top: -86px;
  border-top: 0;
}

.cv-homepage .cv-feature-strip .row {
  max-width: var(--cv-container);
  padding: 22px 0;
}

/* Feature row overlay on hero banner */
.cv-homepage .cv-feature-strip .row.row-collapse.row-full-width,
.cv-homepage .cv-feature-strip #row-1677684865,
.cv-homepage .cv-feature-strip #row-1985541418,
.cv-homepage .cv-feature-strip #row-1740258547 {
  width: min(100%, var(--cv-container));
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 10px 0;
}

.cv-homepage .cv-feature-strip .row.row-collapse.row-full-width > .col,
.cv-homepage .cv-feature-strip #row-1677684865 > .col,
.cv-homepage .cv-feature-strip #row-1985541418 > .col,
.cv-homepage .cv-feature-strip #row-1740258547 > .col {
  flex: 1 1 25%;
  max-width: 25%;
  border-right: 0;
  padding-bottom: 0;
}

.cv-homepage .cv-feature-strip .row.row-collapse.row-full-width > .col:last-child,
.cv-homepage .cv-feature-strip #row-1677684865 > .col:last-child,
.cv-homepage .cv-feature-strip #row-1985541418 > .col:last-child,
.cv-homepage .cv-feature-strip #row-1740258547 > .col:last-child {
  border-right: 0;
}

.cv-homepage .cv-feature-strip .row.row-collapse.row-full-width .col-inner,
.cv-homepage .cv-feature-strip #row-1677684865 .col-inner,
.cv-homepage .cv-feature-strip #row-1985541418 .col-inner,
.cv-homepage .cv-feature-strip #row-1740258547 .col-inner {
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
}

.cv-homepage .cv-feature-strip .row.row-collapse.row-full-width .icon-box,
.cv-homepage .cv-feature-strip #row-1677684865 .icon-box,
.cv-homepage .cv-feature-strip #row-1985541418 .icon-box,
.cv-homepage .cv-feature-strip #row-1740258547 .icon-box {
  width: 100%;
  margin: 0;
}

.cv-homepage .cv-feature-strip .icon-box-left .icon-box-text {
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}

.cv-homepage .cv-feature-strip .cv-feature-title p,
.cv-homepage .cv-feature-strip .cv-feature-desc p {
  margin: 0;
}

.cv-homepage .cv-feature-box .icon-box {
  gap: 10px;
  min-height: 54px;
}

.cv-homepage .cv-feature-title p {
  color: #e3bd91;
}

.cv-homepage .cv-feature-title {
  font-size: 20px;
  color: #e3bd91;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cv-homepage .cv-feature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.cv-homepage .cv-feature-title,
.cv-homepage .cv-feature-title p,
.cv-homepage .cv-feature-desc,
.cv-homepage .cv-feature-desc p {
  background: transparent !important;
}

.cv-homepage .cv-section-heading h2 {
  font-size: 52px;
  letter-spacing: 0.02em;
}

.cv-homepage .cv-viewall.button {
  min-height: 44px;
  line-height: 42px;
  font-size: 13px;
}


.cv-homepage .product-small .box-image {
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 10px;
  padding: 12px 14px;
}

.cv-homepage .product-small .box-image img {
  aspect-ratio: 1 / 1.25;
}

@media (max-width: 1024px) {
  .section-trending {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 576px) {
  .section-trending {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .section-blog {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

.section-trending .product-small .box-image,
.cv-beans-section .product-small .box-image {
  border-radius: 10px;
}

.cv-homepage .product-title {
  font-size: 15px;
  line-height: 1.42;
  min-height: 42px;
}

.cv-homepage .price {
  font-size: 18px;
}

.cv-homepage .star-rating {
  margin-top: 7px;
}

.cv-homepage .add-to-cart-button,
.cv-homepage .button.product_type_simple,
.cv-homepage .button.add_to_cart_button {
  display: none !important;
}

.cv-homepage .cv-tools-section {
  background-color: #1b120d;
}

.cv-homepage .cv-tools-section .product-small .box-image {
  border-radius: 12px;
  border: 0;
  padding: 12px 12px 4px;
}

.cv-homepage .cv-tools-section .product-title,
.cv-homepage .cv-tools-section .price {
  color: #2f2723;
}

.cv-homepage .cv-tools-section .star-rating {
  display: none;
}

.cv-homepage .cv-combo-grid .box {
  border-radius: 12px;
  min-height: 172px;
}

.cv-homepage .cv-combo-grid .product-title {
  min-height: 0;
  font-size: 24px;
}

.cv-homepage .cv-combo-grid .price {
  font-size: 24px;
}

.cv-homepage .cv-newsletter {
  padding: 22px 0;
}

.cv-homepage .cv-newsletter-text h3 {
  font-size: 40px;
  line-height: 1.28;
}

/* Section-by-section rhythm against reference */
.cv-homepage .cv-blog-section {
  padding-top: 44px;
  padding-bottom: 44px;
  overflow-x: hidden;
}

/* Keep blog rows centered even if UX Builder adds row-full-width offsets */
.cv-homepage .cv-blog-section .section-content {
  max-width: var(--cv-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.cv-homepage .cv-blog-section .section-content > .row,
.cv-homepage .cv-blog-section .row.row-full-width {
  width: 100% !important;
  max-width: var(--cv-container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Clean blog post styles (scoped to current Flatsome post-item structure) */
.cv-homepage .cv-blog-section .row.large-columns-3,
.cv-homepage .cv-blog-section .row.medium-columns-1,
.cv-homepage .cv-blog-section .row.small-columns-1 {
  width: 100% !important;
  max-width: var(--cv-container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.cv-homepage .cv-blog-section .post-item .col-inner {
  padding-bottom: 0;
}

.cv-homepage .cv-blog-section .post-item .box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5dbd2;
  box-shadow: none;
  height: 100%;
}

.cv-homepage .cv-blog-section .post-item .box-image {
  background: #ddd;
}

.cv-homepage .cv-blog-section .post-item .box-image img {
  width: 100%;
  min-height: 178px;
  max-height: 178px;
  object-fit: cover;
}

.cv-homepage .cv-blog-section .post-item .box-text {
  padding: 14px 16px 14px;
}

.cv-homepage .cv-blog-section .post-item .cat-label {
  color: #a48d79;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.cv-homepage .cv-blog-section .post-item .post-title {
  font-size: 17px;
  line-height: 1.45;
  color: #362c26;
  margin-bottom: 10px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cv-homepage .cv-blog-section .post-item .from_the_blog_excerpt,
.cv-homepage .cv-blog-section .post-item .box-text p {
  color: #7c6f65;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cv-homepage .cv-blog-section .post-item .post-meta {
  color: #5f544b;
  font-size: 12px;
  font-weight: 600;
}

/* Section 878351498 hard-fix: neutralize row-full-width offsets and center nested post grid */
.cv-homepage #section_878351498 {
  padding-top: 42px !important;
  padding-bottom: 26px !important;
  margin-bottom: 0 !important;
  background-color: #f5f2ee;
}

.cv-homepage #section_878351498 > .section-content {
  max-width: var(--cv-container);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.cv-homepage #section_878351498 #row-235374025.row-full-width {
  width: 100% !important;
  max-width: var(--cv-container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

.cv-homepage #section_878351498 .cv-section-heading {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cv-homepage #section_878351498 .cv-section-heading > .row.large-columns-3 {
  width: 100% !important;
  max-width: var(--cv-container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.cv-homepage #section_878351498 .cv-section-heading > .row > .col.post-item {
  padding-left: 8px;
  padding-right: 8px;
}

/* Dynamic blog section using .section-blog class */
.cv-homepage .section.section-blog .cv-section-heading > .row.large-columns-3 {
  width: 100%;
  max-width: var(--cv-container);
  margin-left: auto;
  margin-right: auto;
}

.cv-homepage .section.section-blog .cv-section-heading > .row > .col.post-item {
  padding-left: 8px;
  padding-right: 8px;
}

.cv-homepage .section.section-blog .post-item .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5dbd2;
  overflow: hidden;
  box-shadow: none;
  height: 100%;
}

.cv-homepage .section.section-blog .post-item .box-image img {
  width: 100%;
  min-height: 178px;
  max-height: 178px;
  object-fit: cover;
}

.cv-homepage .section.section-blog .post-item .box-text {
  padding: 14px 16px;
}

.cv-homepage .section.section-blog .post-item .post-title {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: #362c26;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cv-homepage .section.section-blog .post-item .post-title a {
  color: inherit;
}

.cv-homepage .section.section-blog .post-item .from_the_blog_excerpt {
  color: #7c6f65;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cv-homepage .cv-beans-section {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 44px;
}

.cv-homepage .cv-tools-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.cv-homepage .cv-combo-section {
  padding-top: 40px;
  padding-bottom: 44px;
}

.cv-homepage .cv-newsletter {
  margin-top: 0;
}

.cv-homepage .banner h5,
.cv-homepage .banner h6,
.cv-homepage .banner p {
  margin-top: 0;
}

@media (max-width: 1199px) {
  .cv-homepage .cv-hero-title {
    font-size: 56px;
  }

  .cv-homepage .cv-hero-desc {
    font-size: 24px;
  }

  .cv-homepage .cv-section-heading h2 {
    font-size: 44px;
  }

  .cv-homepage .cv-newsletter-text h3 {
    font-size: 32px;
  }
}

@media (max-width: 849px) {
  #gap-411377791 {
    display: none !important;
    height: 0 !important;
    padding-top: 0 !important;
  }

  .cv-homepage .section {
    padding: 40px 0;
  }

  .cv-homepage .cv-feature-strip {
    background: #634434 !important;
  }

  .cv-homepage .cv-feature-strip {
    margin-top: -36px;
  }

  .cv-homepage .cv-feature-strip .row.row-collapse.row-full-width,
  .cv-homepage .cv-feature-strip #row-1677684865,
.cv-homepage .cv-feature-strip #row-1985541418,
.cv-homepage .cv-feature-strip #row-1740258547 {
    border-radius: 0;
    padding: 8px 0;
  }

  .cv-homepage .cv-feature-strip .row.row-collapse.row-full-width > .col,
  .cv-homepage .cv-feature-strip #row-1677684865 > .col,
.cv-homepage .cv-feature-strip #row-1985541418 > .col,
.cv-homepage .cv-feature-strip #row-1740258547 > .col {
    flex-basis: 100%;
    max-width: 100%;
    border-right: 0;
    border-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cv-homepage .cv-feature-strip .row.row-collapse.row-full-width > .col:last-child,
  .cv-homepage .cv-feature-strip #row-1677684865 > .col:last-child,
.cv-homepage .cv-feature-strip #row-1985541418 > .col:last-child,
.cv-homepage .cv-feature-strip #row-1740258547 > .col:last-child {
    border-bottom: 0;
  }

  .cv-homepage .cv-hero-title {
    font-size: 40px;
    line-height: 1.12;
  }

  .cv-homepage .cv-hero-desc {
    font-size: 18px;
    line-height: 1.65;
  }

  .cv-homepage .button,
  .cv-homepage .button.primary,
  .cv-homepage .cv-btn-outline.button {
    min-height: 44px;
    line-height: 42px;
    font-size: 14px;
    padding: 0 18px;
  }

  .cv-homepage .cv-feature-strip .row {
    padding: 16px 0 10px;
  }

  .cv-homepage .cv-feature-desc,
  .cv-homepage .cv-feature-desc p {
    color: #f7f1ea !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  }

  .cv-homepage .cv-blog-section .post-item .post-title {
    font-size: 16px;
  }

  .cv-homepage .cv-blog-section .post-item .from_the_blog_excerpt,
  .cv-homepage .cv-blog-section .post-item .box-text p {
    font-size: 13px;
  }

  .cv-homepage .section.section-blog .post-item .post-title {
    font-size: 16px;
  }

  .cv-homepage .section.section-blog .post-item .from_the_blog_excerpt {
    font-size: 13px;
  }

  .cv-homepage .cv-section-heading h2 {
    font-size: 32px;
  }

  .cv-homepage .cv-newsletter-text h3 {
    font-size: 25px;
  }
}

/* Tablet: feature strip as 2x2 grid */
@media (min-width: 550px) and (max-width: 849px) {
  .cv-homepage .cv-feature-strip .row.row-collapse.row-full-width > .col,
  .cv-homepage .cv-feature-strip #row-1677684865 > .col,
  .cv-homepage .cv-feature-strip #row-1985541418 > .col,
  .cv-homepage .cv-feature-strip #row-1740258547 > .col,
  .cv-homepage .cv-feature-strip #row-1891434726 > .col {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
}

/* Mobile: force 2x2 grid for section_1815161520 feature strip */
@media (max-width: 549px) {
  .cv-homepage #section_1815161520 #row-434153519 > .col {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }

  .cv-homepage #section_1815161520 #row-434153519 .col-inner {
    justify-content: center;
    text-align: center;
  }

  .cv-homepage #section_1815161520 #row-434153519 .icon-box,
  .cv-homepage #section_1815161520 #row-434153519 .icon-box-text {
    text-align: center !important;
  }

  /* Mobile: 2 posts per row for dynamic .section-blog */
  .cv-homepage .section.section-blog .cv-section-heading > .row.small-columns-1 > .col.post-item {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
}
