/*
Vars – VivaBiome Colors
*/
:root {
  --bd-theme-primary: #c86b45;       /* Terracotta VivaBiome */
  --bd-theme-secondary: #d9a441;     /* Ambra VivaBiome */
  --bd-theme-accent: #8f5d46;        /* Marrone VivaBiome */
  --bd-theme-light: #FFF6EF;         /* Beige/Natural Light */
  --bd-dark-grey-1: #5D636A;
  --bd-grey-1: #EBEBEB;
  --bd-grey-2: #CCC;
  --bd-text-body: #616a6e;
  --bd-fz-p: 16px;

  /* Variabili ereditate dal tema originale */
  --bd-common-white: #FFFFFF;
  --bd-common-black: #000000;
  --bd-ff-p: 'Montserrat', sans-serif;
  --bd-fw-normal: 400;
}

/**
 * Generale
 * */
p { text-align: justify; }
p, li {
  font-family: var(--bd-ff-p);
  font-size: var(--bd-fz-p);
  font-weight: var(--bd-fw-normal);
  color: var(--bd-text-body);
  line-height: 26px;
}
hr { margin: 1.5rem 0; background-color: var(--bd-theme-secondary); }
sup { vertical-align: super; top: 0; }

/*
Header
*/
.bd-header__transparent { background-color: transparent; box-shadow: none; }
.logo { padding: 12px 0; }
.logo img { max-width: 220px; }
.main-menu ul li { margin-right: 20px; }
.main-menu ul li:last-child { margin-right: 0; }
.main-menu ul li a { color: var(--bd-common-black); letter-spacing: 1px; font-size: 16px; font-weight: 600; }
.main-menu ul li:hover > a { color: var(--bd-theme-primary); }
.main-menu ul li.has-dropdown > a::after { color: var(--bd-common-black); }
.hamburger-btn span { background: var(--bd-common-black); }
@media (min-width: 1400px) {
  .main-menu ul li { margin-right: 30px; }
  .main-menu ul li a { letter-spacing: 3px; }
}

/*
Header Sticky
*/
.bd-header__main.header-sticky { background: rgba(255,255,255,.9); }
.header-sticky .logo { padding: 12px 0; }
.header-sticky .logo img { max-width: 185px; }
.header-sticky .main-menu ul li a { color: var(--bd-common-black); font-weight: 400; }
.header-sticky .main-menu ul li:hover > a { color: var(--bd-theme-primary); }
.header-sticky .main-menu ul li.has-dropdown > a::after { color: var(--bd-common-black); }
.header-sticky .hamburger-btn span { background: var(--bd-common-black); }

/*
Offcanvas
*/
.offcanvas__logo.logo img { max-width: 180px; }
@media (max-width: 575px) {
  .offcanvas__area { width: 300px; }
  .offcanvas__contact-text a { font-size: 14px; }
}

/*
Breadcrumb
*/
.breadcrumb__section { padding-top: 240px; padding-bottom: 10px; }
.breadcrumb__title {
  background: linear-gradient(to right, #c86b45, #d9a441);
  padding: 10px;
  color: var(--bd-common-white);
  font-size: 28px;
}
@media (min-width: 768px) {
  .breadcrumb__title { max-width: 60%; }
}

/*
Footer
*/
.bd-footer-widget__about { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 30px; }
.bd-footer-widget__about > img { width: 120px; height: auto; object-fit: contain; }
.bd-footer-widget__about > div { margin: 0; }
.bd-footer-widget__about > div > p { font-size: 22px; margin: 0; }
.bd-footer-widget__about > div > p > a { text-decoration: underline; }

.bd-footer-widget__title,
.bd-footer-widget__content p,
.bd-footer-widget__content hr {
  color: var(--bd-common-white);
}

.bd-footer-widget__title { margin-bottom: 20px; }
.bd-footer-widget__content hr { opacity: 0.5; }

.bd-footer-widget__contacts { list-style-type: none; margin: 0; padding: 0; }
.bd-footer-widget__contacts li { position: relative; padding-top: 4px; padding-bottom: 10px; padding-left: 30px; }
.bd-footer-widget__contacts li i {
  position: absolute; top: 8px; left: 0;
  color: var(--bd-common-white);
  font-size: 16px;
}
.bd-footer-widget__contacts li span,
.bd-footer-widget__contacts li a {
  color: var(--bd-common-white);
  font-size: 16px;
}

.bd-footer__copyright.bd-border-top { border-top-color: #FFF; }
.bd-footer__copyright, .bd-footer__copyright a { color: var(--bd-common-white); }

/*
Footer - Icone social
*/
.bd-footer-widget__social a {
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: var(--bd-common-white);
  font-size: 20px;
  line-height: 39px;
}

/*
Home-Page - Cover
*/
.cover__section { position: relative; width: 100%; overflow: hidden; }
.cover__section .cover__scroll-down {
  position: absolute; bottom: 30px; left: 50%;
  width: 60px; margin-left: -30px; height: auto;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}
@media (orientation: portrait) {
  .cover__section { height: auto; }
  .cover__section video { position: relative; width: 100%; height: auto;}
  .cover__section video.horizontal-video { display: none; }
  .cover__section video.vertical-video { display: block; }
}
@media (orientation: landscape) {
  .cover__section { height: 100vh; }
  .cover__section video {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
  }
  .cover__section video.horizontal-video { display: block; }
  .cover__section video.vertical-video { display: none; }
}

/*
About
*/
.bd-about__text p.intro {
  font-size: 22px; letter-spacing: 1.2px; line-height: 1.5;
}
.bd-about__text p.intro > strong {
  color: var(--bd-theme-secondary);
}

/*
Icone
*/

/* Features line */
.vb-feature {
  text-align: center;
}

.vb-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid #c86b45; /* verde VivaBiome */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.vb-icon-big {
  width: 140px;
  height: 140px;
}

.vb-icon-big img {
  width: 92px;
  height: 92px;
}

/*
Contatti
*/
.bd-contact__map iframe { display: block; height: 400px; }

/*
Privacy Policy
*/
.legal-notice ul { padding: 0 0 0 20px; margin-bottom: 15px; }
.legal-notice h2 { font-size: 24px; margin-top: 30px; }
.legal-notice h3 { font-size: 18px; margin-top: 0; }

/*
Pagina di errore
*/
.error__container { display: flex; justify-content: center; align-items: center; text-align: center; }
.error__text { font-size: 9rem; font-weight: bold; color: var(--bd-theme-primary); }

/*
Paginazione
*/
.bd-basic-pagination ul li { margin-bottom: 10px; }

/*
Delivery
*/
.gi-delivery { list-style-type: none; margin: 20px 0 0 0; padding: 0; }
.gi-delivery > li { display: inline-block; margin-right: 12px; }
.gi-delivery img { width: 60px; height: auto; }

/*
Lista
*/
ul.gi-list { list-style-type: none; margin: 0; padding: 0; }
.gi-list > li {
  padding: 6px 0;
  border-bottom: 1px solid var(--bd-theme-secondary);
}
.gi-list-grey li { border-bottom-color: #C0C0C0; }
.gi-list > li:last-child { border-bottom: 0; }

/*
Section Title
*/
.bd-section__subtitle { font-family: 'Montserrat', sans-serif; }
.bd-section__title { color: #616a6e !important; }

.bd-section__title span {
  color: var(--bd-theme-secondary);
  font-weight: 600;
}

.bd-section__title-lg {
  font-size: 32px;
  color: #616a6e;
}

/*
Padding utilities
*/
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }
.p-50 { padding: 50px; }
.p-60 { padding: 60px; }
.p-70 { padding: 70px; }
.p-80 { padding: 80px; }
.p-90 { padding: 90px; }
.p-100 { padding: 100px; }

/*
Zoom-on-hover images
*/
.popup-image.zoom-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.popup-image.zoom-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 5;
}
.popup-image.zoom-image:hover::before { opacity: 1; }
.popup-image.zoom-image .zoom-icon { display: none; }
.popup-image.zoom-image:hover .zoom-icon {
  display: block;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 36px;
  z-index: 10;
}

/*
Testo Gradiente – VivaBiome
*/
.gi-text  {
  font-weight: 700;
  background: linear-gradient(to right, #c86b45, #d9a441);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Variante Marrone/Verde */
.gio-text {
  font-weight: 700;
  background: linear-gradient(to right, #8f5d46, #c86b45);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/*
Sfondo fungo
*/
.bg-fungo {
  background-image: url('/assets/img/bg-fungo.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
}

/*
Lista con icona FA
*/
.fa-list {
  list-style: none;
  padding-left: 0;
}
.fa-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.fa-list li::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--bd-theme-secondary);
  font-size: 16px;
}

/*
Color helpers
*/
.text-white, .text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white h5 { color: #FFF !important; }

.text-secondary,
.text-secondary h1,
.text-secondary h2,
.text-secondary h3,
.text-secondary h4,
.text-secondary h5 {
  color: var(--bd-theme-secondary) !important;
}

.light-bg { background-color: var(--bd-theme-light); }
.dark-grey-bg { background-color: var(--bd-dark-grey-1); }
.dark-bg { background-color: var(--bd-theme-accent); }

/*
Gradiente CTA aggiornato
*/
.vivabiome-bg {
  background: linear-gradient(to right, #c86b45, #d9a441);
}

/*
Layout fixes
*/
.container-no-padding .row>* {
  padding-right:0; padding-left:0; margin-top:0; margin-bottom:0;
}

/*
Margini laterali responsivi
*/
@media (min-width: 992px) {
  .ml-lg-70 { margin-left: 70px; }
  .mr-lg-70 { margin-right: 70px; }
}

/*
========================================
BLOG SECTION
========================================
*/

/* Blog Item */
.bd-blog__item {
  background: var(--bd-common-white);
  box-shadow: 0px 4px 21px 0px rgba(6, 6, 6, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.bd-blog__item:hover {
  box-shadow: 0px 8px 30px 0px rgba(6, 6, 6, 0.12);
  transform: translateY(-5px);
}

.bd-blog__thumb {
  position: relative;
  overflow: hidden;
}

.bd-blog__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.bd-blog__item:hover .bd-blog__thumb img {
  transform: scale(1.05);
}

.bd-blog__content {
  padding: 30px;
}

/* Blog Meta List */
.bd-blog__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.bd-blog__meta-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--bd-text-body);
}

.bd-blog__meta-item a,
.bd-blog__meta-item span {
  color: var(--bd-text-body);
  transition: color 0.3s ease;
}

.bd-blog__meta-item a:hover {
  color: var(--bd-theme-primary);
}

.bd-blog__meta-item i {
  margin-right: 6px;
  color: var(--bd-theme-secondary);
}

/* Blog Title */
.bd-blog__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bd-blog__title a {
  color: var(--bd-heading-primary);
  transition: color 0.3s ease;
}

.bd-blog__title a:hover {
  color: var(--bd-theme-primary);
}

/* Blog Button */
.bd-blog__btn .bd-btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(to right, var(--bd-theme-primary), var(--bd-theme-secondary));
  color: var(--bd-common-white);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.bd-blog__btn .bd-btn-2:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(166, 194, 85, 0.3);
}

/* Blog Details */
.bd-blog-details__thumb {
  overflow: hidden;
  border-radius: 8px;
}

.bd-blog-details__thumb img {
  width: 100%;
  height: auto;
}

.bd-blog-details__text p {
  margin-bottom: 20px;
}

.bd-blog-details__text h2,
.bd-blog-details__text h3,
.bd-blog-details__text h4 {
  color: var(--bd-heading-primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.bd-blog-details__text ul,
.bd-blog-details__text ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

/* Sidebar */
.bd-sidebar__widget {
  background: var(--bd-theme-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.bd-sidebar__widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bd-heading-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bd-theme-secondary);
}

/* Recent Posts Widget */
.bd-rc__post-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--bd-grey-1);
}

.bd-rc__post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bd-rc__post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 15px;
}

.bd-rc__post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bd-rc__post-item:hover .bd-rc__post-thumb img {
  transform: scale(1.1);
}

.bd-rc__post-content {
  flex: 1;
}

.bd-rc__post-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.bd-rc__post-title a {
  color: var(--bd-heading-primary);
  transition: color 0.3s ease;
}

.bd-rc__post-title a:hover {
  color: var(--bd-theme-primary);
}

.bd-rc__post-meta {
  font-size: 13px;
  color: var(--bd-text-body);
}

.bd-rc__post-meta i {
  margin-right: 5px;
  color: var(--bd-theme-secondary);
}

/* Categories Widget */
.bd-sidebar__categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bd-sidebar__categories ul li {
  border-bottom: 1px solid var(--bd-grey-1);
}

.bd-sidebar__categories ul li:last-child {
  border-bottom: none;
}

.bd-sidebar__categories ul li a {
  display: block;
  padding: 12px 0;
  color: var(--bd-text-body);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.bd-sidebar__categories ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--bd-theme-secondary);
  transition: transform 0.3s ease;
}

.bd-sidebar__categories ul li a:hover {
  color: var(--bd-theme-primary);
  padding-left: 25px;
}

.bd-sidebar__categories ul li a:hover::before {
  transform: translateX(5px);
}

/* Pagination */
.bd-basic__pagination nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.bd-basic__pagination nav ul li a,
.bd-basic__pagination nav ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: var(--bd-common-white);
  border: 1px solid var(--bd-grey-1);
  color: var(--bd-text-body);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.bd-basic__pagination nav ul li a:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
  border-color: var(--bd-theme-primary);
}

.bd-basic__pagination nav ul li.active a {
  background: linear-gradient(to right, var(--bd-theme-primary), var(--bd-theme-secondary));
  color: var(--bd-common-white);
  border-color: transparent;
}

/*
========================================
DOWNLOAD AREA SECTION
========================================
*/

/* Download Category */
.download-category h3 {
  color: var(--bd-heading-primary);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 2px solid var(--bd-theme-secondary);
  padding-bottom: 12px;
  margin-bottom: 25px;
}

/* List Group Styling */
.list-group-item {
  background: var(--bd-common-white);
  border: 1px solid var(--bd-grey-1);
  border-left: 3px solid transparent;
  padding: 20px 25px;
  margin-bottom: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  border-left-color: var(--bd-theme-primary);
  background-color: var(--bd-theme-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.list-group-item h5 {
  color: var(--bd-heading-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.list-group-item:hover h5 {
  color: var(--bd-theme-primary);
}

.list-group-item .text-muted {
  font-size: 14px;
  color: var(--bd-text-body) !important;
}

.list-group-item .badge {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
}

.list-group-item .badge.bg-primary {
  background: linear-gradient(to right, var(--bd-theme-primary), var(--bd-theme-secondary)) !important;
}

/* Alerts */
.alert {
  border-radius: 6px;
  padding: 20px;
  border: none;
}

.alert.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert.alert-info {
  background-color: var(--bd-theme-light);
  color: var(--bd-text-body);
  border-left: 4px solid var(--bd-theme-secondary);
}

.alert h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.alert .alert-link {
  color: var(--bd-theme-primary);
  font-weight: 600;
  text-decoration: underline;
}

.alert .alert-link:hover {
  color: var(--bd-theme-secondary);
}

/* Login/Register Forms */
.nav-tabs {
  border-bottom: 2px solid var(--bd-grey-1);
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  color: var(--bd-text-body);
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: var(--bd-theme-primary);
  border-color: transparent;
}

.nav-tabs .nav-link.active {
  color: var(--bd-theme-primary);
  background: transparent;
  border-color: transparent transparent var(--bd-theme-primary) transparent;
}

.contact__form-input input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--bd-grey-1);
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact__form-input input:focus {
  outline: none;
  border-color: var(--bd-theme-primary);
  box-shadow: 0 0 0 3px rgba(166, 194, 85, 0.1);
}

.bd-btn,
.bd-border-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.bd-btn {
  background: linear-gradient(to right, var(--bd-theme-primary), var(--bd-theme-secondary));
  color: var(--bd-common-white);
}

.bd-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 194, 85, 0.3);
}

.bd-border-btn {
  background: transparent;
  color: var(--bd-theme-primary);
  border: 2px solid var(--bd-theme-primary);
}

.bd-border-btn:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
}

.bd-border-btn--white {
  color: #fff;
  border-color: #fff;
}

.bd-border-btn--white:hover {
  background: #fff;
  color: var(--bd-theme-primary);
}

.bd-border-btn i {
  position: static;
  transform: none;
  padding-right: 0;
}

.bd-border-btn i:first-child {
  display: none;
}

.bd-border-btn:hover i:first-child {
  display: inline;
}

.bd-border-btn:hover i:last-child {
  display: none;
}

/* Float utilities */
.float-end {
  float: right;
  color: var(--bd-common-white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.float-end:hover {
  opacity: 0.8;
}

/*
========================================
RESPONSIVE ADJUSTMENTS
========================================
*/

/* Tablet & Mobile */
@media (max-width: 991px) {
  .bd-blog__content {
    padding: 25px;
  }

  .bd-sidebar__widget {
    padding: 25px;
  }

  .download-category h3 {
    font-size: 20px;
  }

  .list-group-item {
    padding: 15px 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .bd-blog__title {
    font-size: 20px;
  }

  .bd-blog__content {
    padding: 20px;
  }

  .bd-sidebar__widget {
    padding: 20px;
  }

  .bd-sidebar__widget-title {
    font-size: 18px;
  }

  .bd-rc__post-thumb {
    width: 70px;
    height: 70px;
  }

  .bd-rc__post-title {
    font-size: 14px;
  }

  .download-category h3 {
    font-size: 18px;
  }

  .list-group-item {
    padding: 15px;
  }

  .list-group-item h5 {
    font-size: 16px;
  }

  .list-group-item .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .list-group-item .badge {
    align-self: flex-start;
  }

  .bd-btn,
  .bd-border-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-tabs .nav-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .bd-blog__meta-list {
    flex-direction: column;
    gap: 8px;
  }

  .bd-basic__pagination nav ul {
    gap: 5px;
  }

  .bd-basic__pagination nav ul li a,
  .bd-basic__pagination nav ul li span {
    min-width: 35px;
    height: 35px;
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* ============================================
   Inline CTA Box (shortcode nel blog)
   ============================================ */
.bd-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bd-theme-light);
  border-left: 4px solid var(--bd-theme-primary);
  border-radius: 8px;
  padding: 12px 32px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bd-inline-cta__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bd-common-black);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.bd-inline-cta__text {
  font-size: 15px;
  color: var(--bd-text-body);
  margin: 0;
  line-height: 1.5;
}

.bd-inline-cta__action {
  flex-shrink: 0;
}

.bd-inline-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--bd-theme-primary), var(--bd-theme-secondary));
  color: var(--bd-common-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.bd-inline-cta__btn:hover {
  color: var(--bd-common-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 107, 69, 0.35);
}

.bd-inline-cta__btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.bd-inline-cta__btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .bd-inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .bd-inline-cta__action {
    width: 100%;
  }

  .bd-inline-cta__btn {
    justify-content: center;
    width: 100%;
  }
}