:root {
  --red: #b51620;
  --red2: #8f1018;
  --red3: #e2363f;
  --cream: #fff8f3;
  --soft: #f8f4f1;
  --ink: #211d1d;
  --muted: #716a68;
  --line: #eadfda;
  --white: #fff;
  --shadow: 0 22px 60px rgba(69, 25, 22, 0.1);
}
* {
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.topbar {
  background: var(--red2);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.55rem 0;
}
.topbar a {
  color: #fff;
}
.tulsi-nav {
  min-height: 88px;
  border-bottom: 1px solid rgba(181, 22, 32, 0.08);
  box-shadow: 0 8px 30px rgba(40, 18, 18, 0.03);
}
.brand-logo img {
  height: 62px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.navbar-nav {
  gap: 1.1rem;
}
.nav-link {
  font-weight: 600;
  color: #302928 !important;
  padding: 1.7rem 0.6rem !important;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: 0.25s;
}
.nav-link:hover:after {
  transform: scaleX(1);
}
.mega-menu {
  width: 470px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(50, 20, 20, 0.13);
  padding: 0.6rem;
}
.mega-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 9px;
}
.mega-menu a:hover {
  background: var(--cream);
  color: var(--red);
}
.btn-brand {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
}
.btn-brand:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-1px);
}
.btn-outline-brand {
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
}
.btn-outline-brand:hover {
  background: var(--red);
  color: #fff;
}
/*.hero,
.carousel-item {
  min-height: 680px;
}*/
.hero .carousel-item {
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(25, 10, 10, 0.82) 0%,
    rgba(32, 13, 13, 0.62) 45%,
    rgba(20, 10, 10, 0.16) 78%,
    rgba(20, 10, 10, 0.04) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero h1,
.hero h2 {
  font: 700 clamp(3.3rem, 6vw, 6.2rem) / 0.95 "Playfair Display", serif;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.hero h1 em,
.hero h2 em {
  font-weight: 600;
}
.hero p {
  font-size: 1.08rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.5rem 0 2rem;
}
.carousel-control-prev,
.carousel-control-next {
  width: 7%;
}
.carousel-indicators [data-bs-target] {
  width: 35px;
  height: 3px;
  border-radius: 10px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
}
.kicker.light {
  color: #ffd8d3;
}
.benefits {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line);
  min-height: 95px;
}
.benefit i {
  font-size: 1.7rem;
  color: var(--red);
}
.benefit b,
.benefit small {
  display: block;
}
.benefit small {
  font-size: 0.75rem;
  color: var(--muted);
}
.section {
  padding: 95px 0;
}
.soft-bg {
  background: var(--soft);
}
.section-title {
  font: 700 clamp(2.5rem, 4vw, 4.5rem) / 1.02 "Playfair Display", serif;
  letter-spacing: -0.025em;
}
.section-title em {
  color: var(--red);
  font-weight: 600;
}
.section-heading {
  max-width: 760px;
  margin: auto;
}
.section-heading p {
  color: var(--muted);
}
.link-arrow {
  font-weight: 700;
  color: var(--red);
}
.cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 12px 35px rgba(70, 30, 25, 0.05);
}
.cat-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 1.2rem;
  background: linear-gradient(180deg, #fff, #fff7f3);
}
.cat-card span {
  display: block;
  padding: 1rem;
  font: 600 1rem "DM Sans";
  text-align: center;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card {
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 300px;
  background: linear-gradient(180deg, #fff, #fff8f4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: 0.35s;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}
.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
}
.product-cat {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
}
.product-title {
  font: 600 1.25rem "Playfair Display", serif;
  margin: 0.5rem 0 1rem;
  min-height: 3rem;
}
.product-action {
  font-weight: 700;
  font-size: 0.85rem;
}
.story-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.story-image {
  min-height: 530px;
  background-size: cover;
  background-position: center;
}
.b2b {
  padding: 80px 0;
  background: linear-gradient(120deg, #7a0c14, #c81e28);
  color: #fff;
}
.b2b h2 {
  font: 700 clamp(2.3rem, 4vw, 4.3rem) / 1 "Playfair Display", serif;
}
.b2b h2 em {
  font-weight: 600;
}
.b2b p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}
.inner-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.inner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(65, 7, 11, 0.92),
    rgba(108, 10, 16, 0.72),
    rgba(76, 10, 12, 0.16)
  );
}
.inner-copy {
  position: relative;
  color: #fff;
  max-width: 760px;
  padding: 100px 0;
}
.inner-copy h1 {
  font: 700 clamp(3rem, 5vw, 5.5rem) / 1 "Playfair Display", serif;
}
.inner-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 650px;
}
.catalog-toolbar {
  position: sticky;
  top: 88px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.filter-pills {
  display: flex;
  gap: 0.6rem;
  overflow: auto;
  padding-bottom: 2px;
}
.filter-pills button {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-weight: 700;
  font-size: 0.8rem;
}
.filter-pills button.active,
.filter-pills button:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.search-wrap {
  position: relative;
}
.search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.search-wrap input {
  padding-left: 40px;
  border-radius: 999px;
}
.image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.value-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.value-card i {
  font-size: 2rem;
  color: var(--red);
}
.value-card h3 {
  font: 600 1.4rem "Playfair Display", serif;
  margin: 1rem 0 0.6rem;
}
.value-card p {
  color: var(--muted);
  margin: 0;
}
.map-card {
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff5f1, #f2e4df);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-card > i {
  font-size: 4.5rem;
  color: var(--red);
}
.contact-panel {
  display: grid;
  gap: 0.8rem;
}
.contact-panel > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.contact-panel i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--red);
}
.form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.form-card h3 {
  font: 600 2rem "Playfair Display", serif;
}
.form-control,
.form-select {
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  border-color: #dfd4cf;
}
.form-control:focus {
  border-color: #d06a70;
  box-shadow: 0 0 0 0.2rem rgba(181, 22, 32, 0.08);
}
.product-gallery-main {
  height: 560px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fff7f3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
}
.thumb-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  overflow: auto;
}
.thumb-row button {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 4px;
}
.thumb-row button.active {
  border-color: var(--red);
}
.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-category {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.detail-title {
  font: 700 clamp(2.6rem, 4vw, 4.5rem) / 1 "Playfair Display", serif;
}
.detail-meta {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1.5rem 0;
  color: var(--muted);
}
.detail-description {
  line-height: 1.75;
  color: #504948;
}
.detail-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.detail-point {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.9rem;
}
.detail-point i {
  color: var(--red);
}
.product-enquiry-box {
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.footer {
  background: #221617;
  color: rgba(255, 255, 255, 0.72);
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(1.15);
}
.footer h6 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 0.5rem 0;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.footer-bottom a {
  display: inline;
  margin: 0;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mobile-links > a:not(.btn) {
  font-weight: 700;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
/*.legal-copy {
  max-width: 850px;
}*/
.legal-copy h2 {
  font-family: "Playfair Display", serif;
}
@media (max-width: 991.98px) {
  .tulsi-nav {
    min-height: 74px;
  }
  .brand-logo img {
    height: 52px;
  }
  .hero,
  .hero .carousel-item,
  .hero-content {
    min-height: 590px;
  }
  .hero-content {
    padding: 80px 0;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(25, 10, 10, 0.84),
      rgba(25, 10, 10, 0.62)
    );
  }
  .benefit {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 72px 0;
  }
  .story-image {
    min-height: 390px;
  }
  .catalog-toolbar {
    top: 74px;
  }
  .inner-copy {
    padding: 80px 0;
  }
  .inner-hero {
    min-height: 380px;
  }
}
@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.7rem;
  }
  .hero,
  .hero .carousel-item,
  .hero-content {
    min-height: 520px;
  }
  .hero-content {
    padding: 65px 0;
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
  .hero p {
    font-size: 0.95rem;
  }
  .benefit {
    padding: 1rem 0.5rem;
    gap: 0.7rem;
    min-height: 90px;
  }
  .benefit i {
    font-size: 1.35rem;
  }
  .benefit b {
    font-size: 0.82rem;
  }
  .benefit small {
    font-size: 0.65rem;
  }
  .section {
    padding: 58px 0;
  }
  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }
  .cat-card img {
    padding: 0.5rem;
  }
  .cat-card span {
    font-size: 0.82rem;
    padding: 0.8rem 0.4rem;
  }
  .product-image {
    height: 220px;
  }
  .product-body {
    padding: 1rem;
  }
  .product-title {
    font-size: 1.05rem;
    min-height: 2.6rem;
  }
  .story-image {
    min-height: 300px;
  }
  .inner-hero {
    min-height: 340px;
  }
  .inner-copy {
    padding: 62px 0;
  }
  .inner-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
  .detail-points {
    grid-template-columns: 1fr;
  }
  .product-gallery-main {
    height: 390px;
  }
  /*.category-cards .col-6:nth-last-child(1) {
    width: 100%;
  }*/
}
/* 2026 content upgrades */
.reviews-section {
  background: #fffaf7;
}
.review-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(70, 30, 25, 0.05);
}
.review-card h3 {
  font: 600 1.4rem "Playfair Display", serif;
  margin: 0.9rem 0;
}
.review-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.review-stars {
  display: flex;
  gap: 0.28rem;
  color: var(--red);
  font-size: 1.05rem;
}
.review-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--red);
  background: var(--cream);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
}
.about-points {
  display: grid;
  gap: 0.8rem;
}
.about-points div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}
.about-points i {
  color: var(--red);
}
.about-range {
  background: linear-gradient(125deg, #631016, #a3131d);
}
.about-range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-range-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 190px;
  background: #fff;
}
.about-range-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: 0.3s;
}
.about-range-grid span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1rem 0.9rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(transparent, rgba(30, 5, 8, 0.9));
}
.about-range-grid a:hover img {
  transform: scale(1.04);
}
.audience-list {
  display: grid;
  gap: 0.9rem;
}
.audience-list > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
}
.audience-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cream);
  color: var(--red);
  font-size: 1.25rem;
}
.google-map {
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-info {
  padding: 2rem;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}
@media (max-width: 767.98px) {
  .about-range-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-range-grid a,
  .about-range-grid img {
    min-height: 150px;
    height: 150px;
  }
  .google-map {
    height: 380px;
  }
}


.privacy-policy p, .terms-conditions p {
  color: #4f4946;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.product-pagination-wrap {
    border-top: 1px solid rgba(25, 25, 25, 0.08);
    padding-top: 1.25rem;
    margin-top: 0.75rem;
}
.tulsi-pagination {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}
.tulsi-pagination .page-link {
    min-width: 42px;
    height: 42px;
    padding: 0.45rem 0.7rem;
    border-radius: 10px !important;
    border: 1px solid #ead7d4;
    background: #fff;
    color: #2f2927;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: 0.2s ease;
}
.tulsi-pagination .page-link:hover {
    border-color: #b9131a;
    color: #b9131a;
    background: #fff7f6;
}
.tulsi-pagination .page-item.active .page-link {
    background: #b9131a;
    border-color: #b9131a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(185, 19, 26, 0.18);
}
.tulsi-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    background: #f7f3f1;
    color: #777;
    border-color: #eee;
}
.tulsi-pagination .pagination-ellipsis {
    border-color: transparent;
    background: transparent;
    min-width: 30px;
}
.pagination-summary {
    font-size: 0.94rem;
}
@media (max-width: 575.98px) {
    .tulsi-pagination {
        gap: 0.25rem;
    }
    .tulsi-pagination .page-link {
        min-width: 38px;
        height: 38px;
        padding: 0.35rem 0.55rem;
        border-radius: 9px !important;
    }
    .pagination-summary {
        text-align: center;
    }
}

/* Premium footer */
.premium-footer{position:relative;overflow:hidden;background:linear-gradient(145deg,#1b0f10 0%,#2a1416 48%,#180c0d 100%);color:rgba(255,255,255,.72)}
.premium-footer:before{content:"";position:absolute;width:440px;height:440px;border-radius:50%;right:-180px;bottom:-250px;background:radial-gradient(circle,rgba(181,22,32,.22),rgba(181,22,32,0) 68%);pointer-events:none}
.footer-topline{position:relative;border-bottom:1px solid rgba(255,255,255,.1);background:linear-gradient(90deg,rgba(181,22,32,.2),rgba(181,22,32,.04))}
.footer-kicker{display:block;color:#f1a7ac;text-transform:uppercase;letter-spacing:.16em;font-size:.68rem;font-weight:800;margin-bottom:.45rem}
.footer-top-title{font:600 clamp(1.45rem,2.2vw,2.15rem)/1.2 'Playfair Display',serif;color:#fff}
.footer-social-wrap{display:flex;align-items:center;gap:.65rem}
.footer-social-label{font-size:.76rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.5);margin-right:.25rem;font-weight:700}
.footer-social{width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,255,255,.16);display:grid!important;place-items:center;margin:0!important;color:#fff!important;background:rgba(255,255,255,.045);transition:.28s ease}
.footer-social i{font-size:1rem}.footer-social svg{width:16px;height:16px;fill:currentColor}
.footer-social:hover{background:var(--red);border-color:var(--red);transform:translateY(-3px);box-shadow:0 10px 28px rgba(181,22,32,.22)}
.footer-main{position:relative;z-index:1}
.footer-brand-link{display:inline-block!important;margin:0!important;background:#fff;border-radius:16px;padding:7px 10px;box-shadow:0 10px 35px rgba(0,0,0,.14)}
.premium-footer .footer-logo{height:66px;max-width:145px;filter:none}
.footer-about{max-width:390px;line-height:1.75;color:rgba(255,255,255,.62)}
.premium-footer h6{position:relative;color:#fff;text-transform:uppercase;letter-spacing:.14em;font-size:.7rem;font-weight:800;margin-bottom:1.35rem;padding-bottom:.75rem}
.premium-footer h6:after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;border-radius:3px;background:var(--red3)}
.premium-footer a{color:rgba(255,255,255,.66);margin:.58rem 0;transition:.2s}
.premium-footer a:not(.footer-social):not(.footer-brand-link):not(.btn):hover{color:#fff;transform:translateX(3px)}
.footer-enquiry-link{display:inline-flex!important;align-items:center;gap:.45rem;color:#fff!important;font-weight:700;border-bottom:1px solid rgba(255,255,255,.25);padding-bottom:.28rem}
.footer-contact-list{display:grid;gap:.75rem; margin-bottom: 15px;}
.footer-contact-item{display:flex!important;align-items:center;gap:.8rem;margin:0!important;color:rgba(255,255,255,.72)!important}
.footer-contact-icon{width:38px;height:38px;flex:0 0 38px;border-radius:12px;display:grid;place-items:center;background:rgba(181,22,32,.14);border:1px solid rgba(226,54,63,.22);color:#ff9ca3}
.footer-contact-item:hover .footer-contact-icon{background:var(--red);color:#fff;border-color:var(--red)}
.footer-cta{display:inline-flex!important;align-items:center;justify-content:center;background:var(--red);border:1px solid var(--red);border-radius:999px;padding:.72rem 1.25rem!important;color:#fff!important;font-weight:800;margin:0!important}
.footer-cta:hover{background:#fff;border-color:#fff;color:var(--red)!important;transform:translateY(-2px)!important}
.premium-footer .footer-bottom{border-top:1px solid rgba(255,255,255,.11);font-size:.8rem;color:rgba(255,255,255,.5)}
.footer-legal{display:flex;align-items:center;gap:.6rem}.footer-legal a{display:inline!important;margin:0!important;color:rgba(255,255,255,.55)}
@media(max-width:991.98px){.footer-social-wrap{justify-content:flex-start}.footer-top-title{max-width:620px}}
@media(max-width:575.98px){.footer-topline .container{padding-top:1.4rem!important;padding-bottom:1.4rem!important}.footer-social-label{display:none}.footer-social{width:42px;height:42px}.premium-footer .footer-main{padding-top:2.7rem!important;padding-bottom:2rem!important}.footer-about{font-size:.92rem}.premium-footer h6{margin-top:.25rem}.footer-bottom{align-items:flex-start!important}.footer-legal{width:100%;flex-wrap:wrap}}

/* Bootstrap Google Reviews Carousel */
.google-reviews-section{background: #fffaf7;overflow:hidden}
.google-review-heading .kicker{margin:0}
.google-icon{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#fff;border:1px solid var(--line);box-shadow:0 8px 24px rgba(74,25,20,.08);font-size:1.15rem;color:#4285f4}
.google-reviews-carousel{padding:0 58px 52px}
.google-review-card{display:flex;flex-direction:column;min-height:300px;padding:1.75rem;border:1px solid rgba(120,54,47,.13);border-radius:22px;background:#fff;box-shadow:0 18px 45px rgba(70,30,25,.07);transition:transform .25s ease,box-shadow .25s ease}
.google-review-card:hover{transform:translateY(-4px);box-shadow:0 24px 55px rgba(70,30,25,.11)}
.reviewer-avatar{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#b91720,#7a1117);color:#fff;font-weight:800;font-size:1.05rem}
.google-mini{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;border:1px solid var(--line);background:#fff;color:#4285f4}
.google-review-card .review-stars{color:#f4b400;font-size:1rem;gap:.18rem}
.google-review-text{font-size:1rem;line-height:1.75;color:#4f4947;margin-bottom:1.5rem}
.reviewer-meta{display:flex;flex-direction:column;gap:.15rem;padding-top:1rem;border-top:1px solid var(--line)}
.reviewer-meta strong{font-size:.95rem;color:var(--ink)}
.reviewer-meta span{font-size:.8rem;color:var(--muted)}
.google-review-control{width:44px;height:44px;border-radius:50%;top:50%;bottom:auto;transform:translateY(-50%);background:var(--red);opacity:1;box-shadow:0 8px 20px rgba(148,22,29,.2)}
.google-review-control:hover{background:#761116}
.google-review-control .carousel-control-prev-icon,.google-review-control .carousel-control-next-icon{width:18px;height:18px}
.google-review-prev{left:0}
.google-review-next{right:0}
.google-review-indicators{bottom:4px;margin-bottom:0}
.google-review-indicators [data-bs-target]{width:9px;height:9px;border:0;border-radius:50%;background-color:#c9aaa6;opacity:1;margin:0 5px}
.google-review-indicators .active{width:26px;border-radius:10px;background-color:var(--red)}

@media(max-width:991.98px)
{
  .google-reviews-carousel{padding-left:52px;padding-right:52px}
  .google-review-card{min-height:280px}
}

@media(max-width:767.98px)
{
  .google-reviews-carousel{padding:0 0 46px}
  .google-review-control{width:38px;height:38px;top:auto;bottom:0;transform:none}
  .google-review-prev{left:calc(50% - 52px)}
  .google-review-next{right:calc(50% - 52px)}
  .google-review-indicators{display:none}
  .google-review-card{min-height:auto;padding:1.4rem}
  .google-reviews-carousel .carousel-item .row>[class*=col-]:not(:first-child){display:none!important}
}