.elementor-281 .elementor-element.elementor-element-b04b447{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}@media(max-width:767px){.elementor-281 .elementor-element.elementor-element-b04b447{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-d9139f3 */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Roboto:wght@400;500;700&display=swap');

/* --- Main Section Wrapper --- */
.product-details-section {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

.pd-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* --- Left Column: Visuals & Button --- */
.pd-visual-col {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.pd-image-wrapper {
  background-color: #F8F9FA;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pd-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pd-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #2F88CA;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: 2px solid #2F88CA;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.pd-download-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.pd-download-btn:hover {
  background-color: #ffffff;
  color: #2F88CA;
}

.pd-download-btn:hover svg {
  transform: translateY(2px);
}

/* --- Right Column: Header, Specs & Features --- */
.pd-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-header {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid #E6F0FA;
}

.pd-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #2F88CA;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
}

.pd-model {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #1A2B3C;
  margin: 0;
  line-height: 1.1;
}

/* Specs Data Grid */
.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pd-spec-item {
  background-color: #ffffff;
  border: 1px solid #eef2f5;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.pd-spec-item:hover {
  transform: translateY(-2px);
  border-color: #2F88CA;
}

.pd-spec-label {
  font-size: 13px;
  color: #777777;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pd-spec-value {
  font-size: 20px;
  font-weight: 700;
  color: #1A2B3C;
}

/* Features List */
.pd-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  color: #444444;
  line-height: 1.5;
}

.feature-check {
  width: 22px;
  height: 22px;
  color: #2F88CA;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet View */
@media (max-width: 992px) {
  .product-details-section {
    padding: 50px 20px;
  }

  .pd-container {
    flex-direction: column;
    gap: 20px; 
  }
  
  .pd-visual-col {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 15px; 
  }

  .pd-image-wrapper {
    padding: 25px;
    aspect-ratio: 4 / 3; 
  }

  .pd-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .pd-model {
    font-size: 34px;
  }
}

/* Mobile View (Strict Gap & WordPress Ghost Element Killer) */
@media (max-width: 768px) {
  .product-details-section {
    padding: 30px 15px;
  }

  .pd-container {
    gap: 0 !important; 
  }

  /* 
   * THE FIX: This kills any invisible line breaks (<br>) 
   * or empty paragraphs (<p>) injected by WordPress!
   */
  .pd-container > br,
  .pd-container > p,
  .pd-visual-col > br,
  .pd-visual-col > p,
  .pd-info-col > br,
  .pd-info-col > p {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .pd-visual-col {
    gap: 12px !important;
    margin-bottom: 15px !important; /* EXACT gap size between Button and RAVI AGRO */
    padding-bottom: 0 !important;
  }
  
  .pd-download-btn {
    margin-bottom: 0 !important;
    padding: 14px 20px;
    font-size: 15px;
  }

  .pd-info-col,
  .pd-header,
  .pd-brand {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .pd-brand {
    font-size: 16px;
    line-height: 1 !important;
  }

  .pd-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .pd-image-wrapper {
    padding: 15px;
    aspect-ratio: 1 / 1;
  }

  .pd-model {
    font-size: 26px;
  }

  .pd-specs-grid {
    grid-template-columns: 1fr; 
    gap: 12px;
    margin-bottom: 25px;
  }

  .pd-spec-item {
    padding: 15px;
  }

  .pd-features-list {
    gap: 12px;
  }

  .pd-features-list li {
    font-size: 15px;
  }
}/* End custom CSS */