.elementor-190 .elementor-element.elementor-element-5542815{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-58e8872 */.installation-guides-page {
  min-height: 100vh;
  background: #FAF9F6;
}

.installation-guides-hero {
  padding: 80px 16px;
  background: linear-gradient(to bottom, #E8E6E0, #FAF9F6);
}

.installation-guides-hero-inner {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.installation-guides-hero h1 {
  font-family: serif;
  font-size: 56px;
  line-height: 1.1;
  color: #2C2C2C;
  margin: 0 0 16px;
}

.installation-guides-hero p {
  font-size: 18px;
  color: #6B6B6B;
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.6;
}

.installation-guides-content {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

.guide-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
}

.guide-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E8E6E0;
  background: #ffffff;
  color: #6B6B6B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.guide-filter-btn:hover {
  background: #E8E6E0;
}

.guide-filter-btn.active {
  background: #A6A77C;
  color: #ffffff;
  border-color: #A6A77C;
}

.guide-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-category-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  scroll-margin-top: 120px;
}

.guide-category-header {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.guide-category-header:hover {
  background: #FAF9F6;
}

.guide-category-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.guide-category-header h2 {
  font-family: serif;
  font-size: 24px;
  color: #2C2C2C;
  margin: 0;
}

.guide-category-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #6B6B6B;
}

.guide-category-icon {
  font-size: 20px;
  color: #6B6B6B;
  transition: transform 0.3s ease;
}

.guide-category-card.active .guide-category-icon {
  transform: rotate(180deg);
}

.guide-category-content {
  display: none;
  padding: 0 24px 24px;
}

.guide-category-card.active .guide-category-content {
  display: block;
}

.guide-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 16px;
}

.guide-section-heading span {
  color: #A6A77C;
  font-size: 18px;
}

.guide-section-heading h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #2C2C2C;
}

.guide-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.guide-video-card {
  display: block;
  width: 100%;
  background: #FAF9F6;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.guide-video-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.guide-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E8E6E0;
}

.guide-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.guide-video-card:hover .guide-video-overlay {
  background: rgba(0,0,0,0.48);
}

.guide-play-button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #A6A77C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 3px;
  transition: transform 0.3s ease;
}

.guide-video-card:hover .guide-play-button {
  transform: scale(1.08);
}

.guide-video-info {
  padding: 16px;
}

.guide-video-info h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: #2C2C2C;
}

.guide-video-info p {
  margin: 0;
  font-size: 13px;
  color: #6B6B6B;
}

.guide-pdfs-section {
  margin-top: 32px;
}

.guide-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-pdf-item {
  background: #FAF9F6;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

.guide-pdf-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.guide-pdf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(166,167,124,0.10);
  color: #A6A77C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-pdf-info {
  flex: 1;
  min-width: 0;
}

.guide-pdf-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2C2C2C;
}

.guide-pdf-info p {
  margin: 0 0 6px;
  font-size: 12px;
  color: #6B6B6B;
}

.guide-pdf-info span {
  font-size: 12px;
  color: #B8B8B8;
}

.guide-pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A6A77C;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.guide-pdf-download:hover {
  background: #8B8C5F;
  color: #ffffff;
}

/* Video Modal */

.guide-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 24px;
}

.guide-video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.guide-video-modal-box {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.guide-video-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  color: #2C2C2C;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.guide-video-modal-title {
  margin: 0 40px 16px 0;
  font-size: 20px;
  color: #2C2C2C;
  font-family: serif;
}

#guideModalVideo {
  width: 100%;
  max-height: 75vh;
  background: #000000;
  border-radius: 12px;
  display: block;
}

body.guide-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .installation-guides-hero h1 {
    font-size: 40px;
  }

  .installation-guides-hero p {
    font-size: 16px;
  }

  .guide-videos-grid {
    grid-template-columns: 1fr;
  }

  .guide-category-header-left {
    display: block;
  }

  .guide-category-meta {
    margin-top: 8px;
  }

  .guide-pdf-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-pdf-download {
    width: 100%;
  }

  .guide-video-modal {
    padding: 12px;
  }

  .guide-video-modal-box {
    padding: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dad3047 */.Installation-cta {
  margin-top: 64px;
  background: #E8E6E0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.Installation-cta h3 {
  font-family: serif;
  font-size: 32px;
  line-height: 1.2;
  color: #2C2C2C;
  margin: 0 0 12px;
}

.Installation-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B6B6B;
  max-width: 600px;
  margin: 0 auto 24px;
}

.Installation-cta .installation {
  display: inline-block;
  background: #A6A77C;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.Installation-cta .installation:hover {
  background: #8B8C5F;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .Installation-cta {
    padding: 32px 20px;
    margin-top: 48px;
  }

  .Installation-cta h3 {
    font-size: 26px;
  }

  .Installation-cta p {
    font-size: 15px;
  }

  .Installation-cta .installation {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
  }
}/* End custom CSS */