/* ============================================
   Inner Pages — About, Products, Blog, Gallery, Contact
   ============================================ */

.inner-page {
  padding-top: 0;
}

.page-banner {
  position: relative;
  padding: 140px 0 72px;
  background: #0f1419;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 20, 25, 0.92), rgba(27, 67, 50, 0.85)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.page-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner__crumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.page-banner__crumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  opacity: 0.5;
}

.page-banner__crumbs a {
  color: #c9a227;
}

.page-banner__title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-banner__subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-section {
  padding: 90px 0;
}

.page-section--muted {
  background: #f8f9fa;
}

.page-section--dark {
  background: linear-gradient(135deg, #1a1f2e, #1b4332);
}

.page-media {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.check-list i {
  color: #2d6a4f;
  margin-top: 3px;
}

.story-card,
.mv-card,
.stat-box,
.team-card,
.contact-card,
.catalog-card,
.review-card,
.pd-panel,
.contact-form-panel,
.contact-aside-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card {
  padding: 28px;
  height: 100%;
}

.story-card:hover,
.team-card:hover,
.catalog-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.story-year {
  display: inline-block;
  color: #c9a227;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mv-card {
  padding: 36px;
  height: 100%;
}

.mv-card--dark {
  background: #1a1f2e;
  color: #fff;
  border-color: transparent;
}

.mv-card--dark h2 {
  color: #fff;
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: #2d6a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.mv-card--dark .mv-icon {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}

.why-mini-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.why-mini-card i {
  font-size: 1.8rem;
  color: #c9a227;
  margin-bottom: 12px;
  display: block;
}

.why-mini-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.stat-box {
  padding: 28px 16px;
}

.stat-box__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #2d6a4f;
}

.stat-box__suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9a227;
}

.stat-box p {
  margin: 8px 0 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.team-card {
  overflow: hidden;
  height: 100%;
}

.team-card__photo {
  height: 260px;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.06);
}

.team-card__body {
  padding: 22px;
}

.team-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  color: #2d6a4f;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.team-card__body p {
  font-size: 0.88rem;
  color: #6c757d;
  margin: 0;
}

.page-cta {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  border-radius: 20px;
  padding: 48px;
  color: #fff;
}

.page-cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 10px;
}

.page-cta p {
  margin: 0;
  opacity: 0.85;
}

/* Catalog */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-chip {
  border: 1.5px solid #d8dee4;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  color: #495057;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 1.2;
  flex: 0 0 auto;
}

.filter-chip:hover {
  background: rgba(45, 106, 79, 0.08);
  border-color: #2d6a4f;
  color: #1b4332;
}

.filter-chip.is-active {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.28);
}

.filter-chip.is-active:hover {
  background: #1b4332;
  border-color: #1b4332;
  color: #fff;
}

/* Gallery filter tabs — spaced pill buttons */
.rbi-gallery-filters,
.page-gallery .gallery-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
  justify-content: flex-start;
  gap: 14px !important;
  row-gap: 14px !important;
  column-gap: 14px !important;
  margin: 0 0 32px !important;
  padding: 0;
  width: 100%;
  transform: none !important;
}

.rbi-gallery-filters .filter-chip,
.page-gallery .gallery-filters .filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 20px !important;
  min-height: 44px;
  border-radius: 999px !important;
  white-space: nowrap;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .rbi-gallery-filters,
  .page-gallery .gallery-filters {
    gap: 12px !important;
    row-gap: 12px !important;
    column-gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .rbi-gallery-filters .filter-chip,
  .page-gallery .gallery-filters .filter-chip {
    padding: 9px 16px !important;
    min-height: 40px;
    font-size: 0.85rem;
  }
}

.product-count {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.catalog-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-card__media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.08);
}

.catalog-card__badge {
  display: inline-block;
  background: #2d6a4f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.catalog-card__media .catalog-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.catalog-card__stock {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 50px;
  background: #fff;
}

.catalog-card__stock.is-in { color: #2d6a4f; }
.catalog-card__stock.is-limited { color: #b8860b; }

.catalog-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.catalog-card__title a {
  color: #1a1f2e;
}

.catalog-card__title a:hover {
  color: #2d6a4f;
}

.catalog-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #6c757d;
}

.rbi-stars {
  color: #c9a227;
  letter-spacing: 1px;
}

.catalog-card__desc {
  font-size: 0.9rem;
  color: #6c757d;
  flex: 1;
}

.catalog-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 18px;
}

.catalog-card__price strong {
  display: block;
  font-size: 1.25rem;
  color: #1b4332;
}

.catalog-card__price small {
  display: block;
  color: #8a8a8a;
  font-size: 0.75rem;
  margin-top: 2px;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.btn-card-details,
.btn-card-quote {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-card-details {
  background: #ffffff;
  border-color: #1f2937;
  color: #1f2937;
}

.btn-card-details i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.btn-card-details:hover {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.2);
}

.btn-card-details:hover i {
  transform: translateX(3px);
}

.btn-card-quote {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #ffffff;
}

.btn-card-quote:hover {
  background: #1b4332;
  border-color: #1b4332;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 106, 79, 0.3);
}

@media (max-width: 575.98px) {
  .catalog-card__actions {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-card-details,
  .btn-card-quote {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* Product detail */
.pd-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f3f5;
  height: 420px;
  cursor: zoom-in;
}

.pd-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.pd-gallery__main.is-zoomed .pd-gallery__image {
  transform: scale(1.6);
  cursor: zoom-out;
}

.pd-gallery__zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.pd-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pd-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  height: 78px;
  background: none;
  cursor: pointer;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumb.is-active,
.pd-thumb:hover {
  border-color: #2d6a4f;
}

.pd-info__title {
  font-size: 2rem;
  margin: 14px 0 10px;
}

.pd-info__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.pd-info__meta a { color: #2d6a4f; }
.pd-sku { color: #8a8a8a; }

.pd-info__price {
  margin-bottom: 16px;
}

.pd-info__price strong {
  font-size: 2rem;
  color: #1b4332;
  margin-right: 8px;
}

.pd-availability {
  font-weight: 600;
  margin: 16px 0;
}

.pd-availability.is-in { color: #2d6a4f; }
.pd-availability.is-limited { color: #b8860b; }

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.qty-control {
  display: inline-flex;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  border: none;
  background: #f8f9fa;
  font-size: 1.2rem;
}

.qty-control input {
  width: 56px;
  border: none;
  text-align: center;
  font-weight: 700;
}

.pd-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.pd-share a,
.pd-copy-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  color: #1a1f2e;
  border: none;
}

.pd-share a:hover,
.pd-copy-link:hover {
  background: #2d6a4f;
  color: #fff;
}

.pd-panel {
  padding: 28px;
  height: 100%;
}

.pd-panel h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.pd-specs {
  width: 100%;
}

.pd-specs th,
.pd-specs td {
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f5;
  font-size: 0.92rem;
}

.pd-specs th {
  width: 40%;
  color: #6c757d;
  font-weight: 600;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Reviews */
.review-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e9ecef;
  margin-bottom: 28px;
}

.review-summary__score {
  text-align: center;
}

.review-summary__score strong {
  display: block;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  color: #1b4332;
  line-height: 1;
}

.review-bar {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.review-bar__track {
  height: 8px;
  background: #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.review-bar__track span {
  display: block;
  height: 100%;
  background: #c9a227;
}

.review-card {
  padding: 24px;
  height: 100%;
}

.review-card__head {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__head img {
  border-radius: 50%;
  object-fit: cover;
}

.review-card__head h3 {
  font-size: 1rem;
  margin: 0;
}

.review-card__head span {
  font-size: 0.8rem;
  color: #8a8a8a;
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #8a8a8a;
}

/* Cart */
.nav-cart-btn {
  position: relative;
  color: #fff !important;
  font-size: 1.2rem;
  padding: 6px 10px !important;
}

.nav-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9a227;
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head,
.cart-drawer__foot {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.cart-drawer__foot {
  border-bottom: none;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__head h2 {
  font-size: 1.2rem;
  margin: 0;
}

.cart-drawer__close {
  border: none;
  background: none;
  font-size: 1.2rem;
}

.cart-drawer__body {
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-line h4 {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.cart-line p {
  margin: 0;
  font-size: 0.8rem;
  color: #6c757d;
}

.cart-line__remove {
  border: none;
  background: none;
  color: #dc3545;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b4332;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  z-index: 2100;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cart-empty {
  color: #8a8a8a;
  text-align: center;
  padding: 40px 10px;
}

/* Gallery masonry */
.masonry-gallery {
  columns: 3 280px;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.masonry-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.masonry-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-card:hover img {
  transform: scale(1.06);
}

.masonry-overlay,
.masonry-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 25, 0.4);
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-card:hover .masonry-overlay,
.masonry-card--video .masonry-play {
  opacity: 1;
}

.masonry-card--video .masonry-play {
  opacity: 0.95;
  background: rgba(15, 20, 25, 0.25);
}

.masonry-play {
  width: 64px;
  height: 64px;
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #c9a227;
  color: #000;
}

.masonry-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.page-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.page-lightbox[hidden] { display: none !important; }

.page-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
}

.page-lightbox__content {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.page-lightbox__content img,
.page-lightbox__content iframe {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
}

.page-lightbox__content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: none;
  height: auto;
  min-height: 360px;
}

.page-lightbox__title {
  color: #fff;
  margin-top: 16px;
}

/* Blog */
.blog-feature-card,
.blog-list-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.blog-feature-card__media,
.blog-list-card__media {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-feature-card__media {
  height: 240px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin-bottom: 22px;
}

.blog-list-card--stack {
  display: block;
  margin-bottom: 0;
}

.blog-list-card__media {
  height: 100%;
  min-height: 180px;
}

.blog-list-card--stack .blog-list-card__media {
  height: 200px;
}

.blog-feature-card__media img,
.blog-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-feature-card:hover img,
.blog-list-card:hover img {
  transform: scale(1.05);
}

.blog-feature-card__body,
.blog-list-card__body {
  padding: 22px;
}

.blog-feature-card__body h3,
.blog-list-card__body h2,
.blog-list-card__body h3 {
  font-size: 1.2rem;
  margin: 8px 0 10px;
}

.blog-feature-card__body h3 a,
.blog-list-card__body h2 a,
.blog-list-card__body h3 a {
  color: #1a1f2e;
}

.blog-feature-card__body h3 a:hover,
.blog-list-card__body h2 a:hover {
  color: #2d6a4f;
}

.blog-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: #8a8a8a;
}

.blog-list-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-list-card__author img {
  border-radius: 50%;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-search {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.sidebar-search input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  outline: none;
}

.sidebar-search button {
  border: none;
  background: #2d6a4f;
  color: #fff;
  padding: 0 16px;
}

.sidebar-block {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}

.sidebar-block h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cats a {
  display: block;
  padding: 8px 0;
  color: #495057;
  border-bottom: 1px solid #f1f3f5;
}

.sidebar-cats a.is-active,
.sidebar-cats a:hover {
  color: #2d6a4f;
  font-weight: 600;
}

.sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-recent li {
  margin-bottom: 14px;
}

.sidebar-recent a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  color: #1a1f2e;
}

.sidebar-recent img {
  width: 64px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-recent strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 4px;
}

.sidebar-recent em {
  font-style: normal;
  font-size: 0.75rem;
  color: #8a8a8a;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.article-meta img {
  border-radius: 50%;
}

.article-meta strong {
  display: block;
  color: #1a1f2e;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: #495057;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags a {
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Contact page */
.contact-card {
  padding: 28px 22px;
  text-align: center;
  height: 100%;
}

.contact-card i {
  font-size: 1.6rem;
  color: #2d6a4f;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

.contact-card a:hover { color: #2d6a4f; }

.contact-form-panel,
.contact-aside-card {
  padding: 36px;
  height: 100%;
}

.contact-aside-card {
  background: #1a1f2e;
  color: rgba(255, 255, 255, 0.75);
  border: none;
}

.contact-aside-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.contact-aside-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-aside-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-aside-list i { color: #c9a227; }

.contact-social-row {
  display: flex;
  gap: 10px;
}

.contact-social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social-row a:hover {
  background: #c9a227;
  color: #000;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.faq-accordion .accordion-item {
  border: 1px solid #e9ecef;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(45, 106, 79, 0.08);
  color: #1b4332;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: #2d6a4f;
}

.empty-state {
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #dee2e6;
}

.preloader-brand {
  color: #c9a227;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .review-summary {
    grid-template-columns: 1fr;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-card__media {
    height: 220px;
  }

  .pd-gallery__main {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .page-section {
    padding: 70px 0;
  }

  .page-cta {
    padding: 32px 24px;
    text-align: center;
  }

  .page-cta .text-lg-end {
    text-align: center !important;
  }

  .pd-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .masonry-gallery {
    columns: 1;
  }
}

/* ---- Quote / Inquiry page ---- */
.quote-panel {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.quote-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f3f5;
}

.quote-panel__head h2 {
  font-size: 1.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-panel__head i {
  color: #2d6a4f;
}

.quote-count-badge {
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}

.quote-empty {
  text-align: center;
  padding: 48px 20px;
  color: #6c757d;
}

.quote-empty i {
  font-size: 2.8rem;
  color: #c9a227;
  display: block;
  margin-bottom: 12px;
}

.quote-empty h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1a1f2e;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
}

.quote-table th {
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a8a8a;
  padding: 10px 12px;
  border-bottom: 2px solid #e9ecef;
  white-space: nowrap;
}

.quote-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #f1f3f5;
  vertical-align: middle;
  font-size: 0.92rem;
}

.quote-table td strong {
  display: block;
  color: #1a1f2e;
}

.quote-table td small {
  color: #8a8a8a;
}

.quote-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.quote-cat {
  display: inline-block;
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 50px;
}

.quote-qty {
  width: 72px;
  padding: 8px 10px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.quote-pricing {
  display: inline-block;
  color: #c9a227;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.quote-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

.quote-remove:hover {
  background: #dc3545;
  color: #fff;
}

.quote-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.quote-form-intro {
  font-size: 0.92rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.quote-summary-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
}

.quote-summary-box ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.quote-summary-box li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #e9ecef;
  font-size: 0.9rem;
}

.quote-summary-box em {
  font-style: normal;
  font-weight: 700;
  color: #c9a227;
  font-size: 0.85rem;
}

.quote-form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #8a8a8a;
  text-align: center;
}

.quote-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.quote-alert i {
  font-size: 1.4rem;
  margin-top: 2px;
}

.quote-alert--success {
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  border: 1px solid rgba(45, 106, 79, 0.25);
}

.quote-alert--error {
  background: rgba(220, 53, 69, 0.08);
  color: #842029;
  border: 1px solid #f5c2c7;
}

.quote-alert--info {
  background: rgba(201, 162, 39, 0.12);
  color: #5c4a12;
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.quote-alert p,
.quote-alert ul {
  margin: 6px 0 0;
}

.catalog-card__price .quote-pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a227;
}

@media (max-width: 991.98px) {
  .quote-table thead {
    display: none;
  }

  .quote-table tr {
    display: block;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 8px;
  }

  .quote-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: none;
    padding: 10px 8px;
  }

  .quote-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #8a8a8a;
  }
}
