/* ==========================================================================
   GLOBAL SITE CSS (Γενικά Styles Εταιρίας)
   ========================================================================== */

/* Base Resets */

/* 1. The Base State - Sets the stage for the animation */
.gb-row-hover {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
  border-radius: 12px; /* Optional: smooths out sharp corners */
  overflow: hidden;    /* Keeps the glass effect contained */
  backface-visibility: hidden; 
}

/* 2. The Hover State - The "Frosty" Transformation */
.gb-row-hover:hover {
  /* Subtle lift and grow */
  transform: translateY(-5px) scale(1.02);
  
  /* The Glass Effect */
  background: rgba(255, 255, 255, 0.4) !important; /* Semi-transparent white */
  backdrop-filter: blur(12px); /* This creates the "frost" */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  
  /* The "Shininess" - A light border makes it look like real glass */
  border: 1px solid rgba(255, 255, 255, 0.5);
  
  /* Professional soft shadow */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
              0 5px 15px rgba(0, 0, 0, 0.05);
  
  z-index: 2;
}

  /* Here we define the boxes */
.gb-row-hover {
  /* Set a specific width */
  width: 100%;             /* Responsive: fills the column */
  max-width: 400px;        /* Prevents it from getting too wide */
  min-width: 280px;        /* Prevents it from getting too skinny on mobile */
  
  /* Set a specific height */
  aspect-ratio: 13 / 21;
  /* height: 350px;            /* Forces a fixed height */
  /* OR use min-height if you want it to grow with text */
  /*min-height: 300px; */
  
  /* Center the box if it's smaller than the column */
  margin: 0 auto; 
  
  /* Layout fixes */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center;     /* Centers content horizontally */
  text-align: center;
  padding: 30px;           /* Adds space inside the box */
  box-sizing: border-box;  /* Ensures padding doesn't break the width */
}


/* NO SIZE ONLY HOVER*/

/* 1. The Base State - Sets the stage for the animation */
.gb-any-hover {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
  border-radius: 12px; /* Optional: smooths out sharp corners */
  overflow: hidden;    /* Keeps the glass effect contained */
  backface-visibility: hidden; 
}

/* 2. The Hover State - The "Frosty" Transformation */
.gb-any-hover:hover {
  /* Subtle lift and grow */
  transform: translateY(-5px) scale(1.02);
  
  /* The Glass Effect */
  background: rgba(255, 255, 255, 0.4) !important; /* Semi-transparent white */
  backdrop-filter: blur(12px); /* This creates the "frost" */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  
  /* The "Shininess" - A light border makes it look like real glass */
  border: 1px solid rgba(255, 255, 255, 0.5);
  
  /* Professional soft shadow */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
              0 5px 15px rgba(0, 0, 0, 0.05);
  
  z-index: 2;
}

  /* Here we define the boxes */
.gb-any-hover {
  /* Set a specific width */
  width: 100%;             /* Responsive: fills the column */
  max-width: 400px;        /* Prevents it from getting too wide */
  min-width: auto;        /* Prevents it from getting too skinny on mobile */
  
  /* Set a specific height */
  /*height: auto;*/
  aspect-ratio: 13 / 21;           /* Forces a fixed height */
  /* OR use min-height if you want it to grow with text */
  /*max-height: 150px; */
  
  /* Center the box if it's smaller than the column */
  margin: 0 auto; 
  
  /* Layout fixes */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center;     /* Centers content horizontally */
  text-align: center;
  padding: 30px;           /* Adds space inside the box */
  box-sizing: border-box;  /* Ensures padding doesn't break the width */
}

 /* This targets any image inside the gb-any-hover box */
.gb-any-hover img {
  max-width: 100%;    /* Prevents the image from being wider than the box */
  height: auto;       /* Maintains the image's original proportions */
  max-height: 180px;  /* Limits the height so it doesn't push text out of the box */
  object-fit: contain; /* Ensures the whole image is visible without being cropped */
  margin-bottom: 15px; /* Adds a little space between the image and the text below it */
}


#sp-main-body {
    padding: 0;
}

.article-details .article-ratings-social-share {
    padding: 1rem 0;
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 1rem;
}

/* ===== 2. VARIABLES & BASICS ===== */
:root {
  --gt-navy: #173148;
  --gt-burgundy: #7d2827;
  --gt-beige: #eeebe5;
  --gt-white: #ffffff;
  --gt-text-primary: #173148;
  --gt-text-secondary: rgba(23, 49, 72, 0.70);
  --gt-shadow-hover: 0 16px 34px rgba(23, 49, 72, 0.18);
  --gt-card-padding: 14px;
}

/* ===== 3. PRODUCT GRID (THE FIXES) ===== */

/* Column Settings: Gap & Anti-Clipping */
.gt-products-section .sppb-row .col-md-3,
.gt-products-section .sppb-row .col-md-4,
.gt-products-section .sppb-row .sppb-col-md-3,
.gt-products-section .sppb-row .sppb-col-md-4 {
    padding-left: 30px !important;  /* 60px Gap Total */
    padding-right: 30px !important;
    padding-top: 20px !important;   /* Fixes top hover clipping */
    overflow: visible !important;
    margin: 0 !important;
    z-index: 10;
}

/* Image Card: Size & Centering */
.gt-home .gt-card, 
.gt-home .gt-card a {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    
    /* SIZE: 75% Width */
    width: 75% !important;
    max-width: 75% !important;
    
    /* CENTER in column */
    margin: 0 auto !important;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Aspect Ratio */
.gt-home .gt-card img {
    aspect-ratio: 13 / 21;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Text Alignment: Left Align to Image Edge */
.gt-home .gt-card-text {
    width: 75% !important;
    max-width: 75% !important;
    margin: 12px auto 0 auto !important; /* Centered under image */
    
    text-align: left !important;
    display: block !important;
    padding: 0 !important;
    
    color: rgba(23, 49, 72, 0.70);
    font-size: 15px;
    line-height: 1.5;
}

/* Inner Paragraphs */
.gt-home .gt-card-text p,
.gt-home .gt-card-text div {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Title Alignment */
.gt-home .gt-card .sppb-addon-title {
    text-align: center !important;
    padding: 12px 0 6px 0 !important;
    margin: 0 !important;
}

/* Hover Effects */
@media (hover: hover) and (pointer: fine) {
    .gt-home .gt-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 16px 34px rgba(23, 49, 72, 0.18);
        z-index: 20;
    }
    .gt-home .gt-card:hover img {
        transform: scale(1.03);
    }
}

/* ===== 4. CLIENT STRIP (RESTORED) ===== */

.gt-clients-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 8px 0;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.gt-clients-strip::before,
.gt-clients-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 24px; z-index: 3; pointer-events: none;
}
.gt-clients-strip::before { left: 0; background: linear-gradient(to right, var(--gt-beige) 0%, transparent 100%); }
.gt-clients-strip::after { right: 0; background: linear-gradient(to left, var(--gt-beige) 0%, transparent 100%); }

.gt-clients-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.gt-clients-strip__inner::-webkit-scrollbar { display: none; }

.gt-clients-strip a.gt-client {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0; margin: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

.gt-clients-strip a.gt-client img {
  height: 28px;
  width: auto;
  max-width: 160px;
  display: block;
  opacity: 0.88;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gt-clients-strip a.gt-client:hover { transform: translateY(-2px); }
  .gt-clients-strip a.gt-client:hover img { opacity: 1; filter: grayscale(0%); }
}

/* White Logo Fix */
.gt-clients-strip a.gt-client--whitefix img { filter: grayscale(100%) drop-shadow(0 1px 2px rgba(23, 49, 72, 0.25)) brightness(0.95); }
.gt-clients-strip a.gt-client--whitefix:hover img { filter: grayscale(0%) drop-shadow(0 1px 2px rgba(23, 49, 72, 0.25)) brightness(1); }

/* ===== 5. LINKS & RESPONSIVE ===== */

.gt-allcats {
  display: inline-block;
  color: var(--gt-burgundy);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.gt-allcats:hover { color: var(--gt-navy); border-bottom-color: var(--gt-navy); }

/* Mobile/Tablet Adjustments */
@media (max-width: 991px) {
  .gt-clients-strip { padding: 6px 0; }
  .gt-clients-strip__inner { gap: 16px; padding: 0 12px; }
  .gt-clients-strip a.gt-client img { height: 26px; max-width: 140px; }
  
  /* Reset Card Width for Mobile so they aren't too small */
  .gt-home .gt-card, .gt-home .gt-card-text { width: 90% !important; max-width: 90% !important; }
}

@media (max-width: 640px) {
  .gt-clients-strip { padding: 5px 0; }
  .gt-clients-strip__inner { gap: 14px; padding: 0 10px; }
  .gt-clients-strip a.gt-client img { height: 24px; max-width: 130px; }
  .gt-home .gt-card-text { font-size: 14px; }
}


/* ==========================================================================
   ΗΛΕΚΤΡΙΚΟΣ ΛΕΒΗΤΑΣ - ΣΕΛΙΔΑ ΠΡΟΪΟΝΤΟΣ (ΝΕΟ)
   ========================================================================== */

/* --- 1. Εισαγωγή (Intro Section) --- */
.sppb-addon-text .sppb-block--electric-intro,
.sppb-block--electric-intro {
  max-width: 900px;
  margin: 0 auto;
  color: #173148 !important;
  line-height: 1.7;
}

.sppb-addon-text .sppb-block--electric-intro h1,
.sppb-addon-text .sppb-block--electric-intro h2,
.sppb-block--electric-intro h1,
.sppb-block--electric-intro h2 {
  color: #173148 !important;
  font-weight: 700;
  margin-bottom: 24px;
}

.sppb-addon-text .sppb-block--electric-intro strong,
.sppb-block--electric-intro strong {
  color: #7d2827 !important;
  font-weight: 600;
}

.sppb-addon-text .sppb-block--electric-intro p:last-of-type,
.sppb-block--electric-intro p:last-of-type {
  background-color: #eeebe5 !important;
  padding: 24px !important;
  border-left: 4px solid #7d2827 !important;
  border-radius: 4px;
  margin-top: 32px;
}

/* --- 2. Λίστα Χαρακτηριστικών & Πλεονεκτήματα (Specs Section) --- */
.sppb-addon-text .sppb-block--electric-specs,
.sppb-block--electric-specs {
  max-width: 900px;
  margin: 0 auto;
  color: #173148 !important;
  line-height: 1.7;
}

.sppb-addon-text .specs-highlight-card,
.specs-highlight-card {
  background-color: #eeebe5 !important;
  padding: 32px !important;
  border-radius: 8px;
  border-left: 6px solid #7d2827 !important;
  margin-bottom: 48px !important;
  box-shadow: 0 4px 20px rgba(23, 49, 72, 0.08); 
}

.sppb-addon-text .specs-highlight-card h3,
.specs-highlight-card h3 {
  color: #173148 !important;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.sppb-addon-text .specs-highlight-card ul,
.specs-highlight-card ul {
  list-style-type: none !important; 
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}

.sppb-addon-text .specs-highlight-card ul li,
.specs-highlight-card ul li {
  position: relative !important;
  padding-left: 28px !important;
  margin-bottom: 16px !important;
  color: #173148 !important; 
  line-height: 1.6;
  background: none !important;
}

.sppb-addon-text .specs-highlight-card ul li::marker,
.specs-highlight-card ul li::marker {
  color: transparent !important;
  font-size: 0 !important;
}

.sppb-addon-text .specs-highlight-card ul li::before,
.specs-highlight-card ul li::before {
  content: '■' !important; 
  color: #7d2827 !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  font-size: 14px !important;
  display: inline-block !important;
}

.sppb-addon-text .specs-highlight-card strong,
.specs-highlight-card strong {
  color: #7d2827 !important;
}

.sppb-addon-text .specs-features,
.specs-features {
  display: flex;
  flex-direction: column;
  gap: 32px; 
}

.sppb-addon-text .feature-item,
.feature-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 49, 72, 0.1); 
}

.sppb-addon-text .feature-item:last-child,
.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sppb-addon-text .feature-item h4,
.feature-item h4 {
  color: #7d2827 !important; 
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.sppb-addon-text .feature-item p,
.feature-item p {
  margin: 0 !important;
  color: #173148 !important;
}

/* --- 3. Ενότητα Κόστους & Απόδοσης (Cost Section) --- */
.sppb-addon-text .sppb-block--electric-cost,
.sppb-block--electric-cost {
  max-width: 900px;
  margin: 0 auto;
  color: #173148 !important;
  line-height: 1.7;
}

.sppb-addon-text .cost-maintenance-box,
.cost-maintenance-box {
  background-color: rgba(125, 40, 39, 0.05);
  border-left: 4px solid #7d2827 !important;
  padding: 24px !important;
  margin-top: 32px !important;
  margin-bottom: 40px !important;
  border-radius: 4px;
}

.sppb-addon-text .cost-maintenance-box p,
.cost-maintenance-box p {
  margin: 0 !important;
  color: #173148 !important;
}

.sppb-addon-text .cost-maintenance-box strong,
.cost-maintenance-box strong {
  color: #7d2827 !important;
}

.sppb-addon-text .cost-breakdown-card,
.cost-breakdown-card {
  background-color: #eeebe5 !important;
  padding: 32px !important;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(23, 49, 72, 0.08);
}

.sppb-addon-text .cost-breakdown-card h3,
.cost-breakdown-card h3 {
  color: #7d2827 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  font-size: 1.35rem;
  font-weight: 700;
}

.sppb-addon-text .cost-breakdown-card ul,
.cost-breakdown-card ul {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}

.sppb-addon-text .cost-breakdown-card ul li,
.cost-breakdown-card ul li {
  position: relative !important;
  padding-left: 24px !important;
  margin-bottom: 12px !important;
  color: #173148 !important;
  background: none !important;
}

.sppb-addon-text .cost-breakdown-card ul li::marker,
.cost-breakdown-card ul li::marker {
  color: transparent !important;
  font-size: 0 !important;
}

.sppb-addon-text .cost-breakdown-card ul li::before,
.cost-breakdown-card ul li::before {
  content: '▸' !important; 
  color: #7d2827 !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: bold !important;
  font-size: 18px !important;
}

.sppb-addon-text .cost-tip,
.cost-tip {
  margin-top: 24px !important;
  padding-top: 24px !important;
  border-top: 1px dashed rgba(23, 49, 72, 0.2);
}

.sppb-addon-text .cost-tip p,
.cost-tip p {
  margin: 0 !important;
  color: #173148 !important;
}

/* --- 4. Κάρτες Πλεονεκτημάτων / Λόγοι Επιλογής (Reasons Grid) --- */
.sppb-addon-text .sppb-block--electric-reasons,
.sppb-block--electric-reasons {
  max-width: 900px;
  margin: 0 auto;
  color: #173148 !important;
  line-height: 1.7;
}

.sppb-addon-text .sppb-block--electric-reasons h2,
.sppb-block--electric-reasons h2 {
  color: #173148 !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.sppb-addon-text .reasons-intro,
.reasons-intro {
  font-size: 1.1rem;
  margin-bottom: 40px !important;
}

.sppb-addon-text .reasons-intro strong,
.reasons-intro strong {
  color: #7d2827 !important;
}

.sppb-addon-text .reasons-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sppb-addon-text .reason-card,
.reason-card {
  background-color: #eeebe5 !important;
  padding: 24px !important;
  border-radius: 6px;
  border-top: 4px solid #173148 !important;
  transition: transform 0.3s ease;
}

.sppb-addon-text .reason-card:hover,
.reason-card:hover {
  transform: translateY(-5px);
}

.sppb-addon-text .reason-card h4,
.reason-card h4 {
  color: #7d2827 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sppb-addon-text .reason-card h4::before,
.reason-card h4::before {
  content: '\2713' !important; 
  color: #173148 !important;
  font-size: 1.2rem;
}

.sppb-addon-text .reason-card p,
.reason-card p {
  margin: 0 !important;
  font-size: 0.95rem;
  color: #173148 !important;
}

.sppb-addon-text .reason-card--solar,
.reason-card--solar {
  border-top: 4px solid #7d2827 !important;
  background-color: rgba(125, 40, 39, 0.04) !important;
  grid-column: 1 / -1 !important; 
  text-align: center !important;  
}

.sppb-addon-text .reason-card--solar h4,
.reason-card--solar h4 {
  justify-content: center;
}

.sppb-addon-text .reason-card--solar h4::before,
.reason-card--solar h4::before {
  content: '\2600' !important; 
  color: #7d2827 !important;
  font-size: 1.4rem;
}

/* --- 5. Πίνακας Μεγεθών (Sizing Table) --- */
.sppb-addon-text .sppb-block--electric-sizing,
.sppb-block--electric-sizing {
  max-width: 650px;
  margin: 0 auto 32px auto;
  color: #173148 !important;
}

.sppb-addon-text .sizing-title,
.sizing-title {
  text-align: center;
  color: #173148 !important;
  font-weight: 700;
  margin-bottom: 24px !important;
  font-size: 1.5rem;
}

.sppb-addon-text .sizing-table-wrapper,
.sizing-table-wrapper {
  border-radius: 8px;
  overflow: hidden; 
  box-shadow: 0 4px 20px rgba(23, 49, 72, 0.08);
  margin-bottom: 16px;
}

.sppb-addon-text .electric-sizing-table,
.electric-sizing-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  background-color: #ffffff !important;
}

.sppb-addon-text .electric-sizing-table th,
.electric-sizing-table th {
  background-color: #173148 !important;
  color: #eeebe5 !important;
  padding: 18px 16px !important;
  text-align: center !important;
  font-weight: 600 !important;
  font-size: 1.1rem;
  border: none !important;
}

.sppb-addon-text .electric-sizing-table td,
.electric-sizing-table td {
  padding: 16px !important;
  text-align: center !important;
  color: #173148 !important;
  border-bottom: 1px solid rgba(23, 49, 72, 0.08) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.sppb-addon-text .electric-sizing-table tbody tr:nth-child(even) td,
.electric-sizing-table tbody tr:nth-child(even) td {
  background-color: #fcfcfc !important;
}

.sppb-addon-text .electric-sizing-table tbody tr:hover td,
.electric-sizing-table tbody tr:hover td {
  background-color: rgba(125, 40, 39, 0.04) !important;
}

.sppb-addon-text .electric-sizing-table td strong,
.electric-sizing-table td strong {
  color: #7d2827 !important;
  font-size: 1.15rem;
  font-weight: 700;
}

.sppb-addon-text .sizing-disclaimer,
.sizing-disclaimer {
  font-size: 0.85rem !important;
  color: #173148 !important;
  opacity: 0.7;
  text-align: center;
  font-style: italic;
  margin: 0 !important;
}

/* --- 6. Συγκριτικός Πίνακας (Comparison Table) --- */
.sppb-addon-text .sppb-block--electric-comparison,
.sppb-block--electric-comparison {
  max-width: 800px;
  margin: 0 auto 32px auto;
  color: #173148 !important;
}

.sppb-addon-text .comparison-title,
.comparison-title {
  text-align: center;
  color: #173148 !important;
  font-weight: 700;
  margin-bottom: 24px !important;
  font-size: 1.5rem;
}

.sppb-addon-text .comparison-table-wrapper,
.comparison-table-wrapper {
  border-radius: 8px;
  overflow-x: auto; 
  box-shadow: 0 4px 20px rgba(23, 49, 72, 0.08);
  background-color: #ffffff;
}

.sppb-addon-text .electric-comparison-table,
.electric-comparison-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  min-width: 600px; 
}

.sppb-addon-text .electric-comparison-table th,
.electric-comparison-table th {
  background-color: #173148 !important;
  color: #ffffff !important;
  padding: 16px !important;
  text-align: center !important;
  font-weight: 600 !important;
  font-size: 1.1rem;
  border: none !important;
}

.sppb-addon-text .electric-comparison-table th.col-features,
.electric-comparison-table th.col-features {
  text-align: left !important;
  background-color: #0d1e2d !important; 
}

.sppb-addon-text .electric-comparison-table th.col-highlight,
.electric-comparison-table th.col-highlight {
  background-color: #7d2827 !important;
}

.sppb-addon-text .electric-comparison-table td,
.electric-comparison-table td {
  padding: 16px !important;
  text-align: center !important;
  color: #173148 !important;
  border-bottom: 1px solid rgba(23, 49, 72, 0.08) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  font-size: 1rem;
}

.sppb-addon-text .electric-comparison-table td.row-label,
.electric-comparison-table td.row-label {
  text-align: left !important;
  font-weight: 600 !important;
  background-color: #fcfcfc !important;
}

.sppb-addon-text .electric-comparison-table td.col-highlight,
.electric-comparison-table td.col-highlight {
  background-color: rgba(238, 235, 229, 0.6) !important; 
  font-weight: 600 !important;
}

.sppb-addon-text .electric-comparison-table span,
.electric-comparison-table span {
  margin-right: 6px;
  font-size: 1.1rem;
}

/* --- 7. Call To Action (CTA) --- */
.sppb-addon-text .sppb-block--electric-cta,
.sppb-block--electric-cta {
  max-width: 800px;
  margin: 0 auto;
  background-color: #eeebe5 !important;
  border-radius: 8px;
  padding: 32px !important;
  border-top: 5px solid #7d2827 !important;
  box-shadow: 0 4px 15px rgba(23, 49, 72, 0.05);
  text-align: center;
  color: #173148 !important;
}

.sppb-addon-text .cta-title,
.cta-title {
  color: #173148 !important;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  font-size: 1.5rem;
}

.sppb-addon-text .cta-subtitle,
.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px !important;
}

.sppb-addon-text .cta-checklist,
.cta-checklist {
  background-color: #ffffff !important;
  padding: 24px !important;
  border-radius: 6px;
  text-align: left;
  margin-bottom: 24px !important;
  border: 1px solid rgba(23, 49, 72, 0.1);
}

.sppb-addon-text .cta-checklist p,
.cta-checklist p {
  color: #7d2827 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  font-size: 1.05rem;
}

.sppb-addon-text .cta-checklist ul,
.cta-checklist ul {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.sppb-addon-text .cta-checklist ul li,
.cta-checklist ul li {
  position: relative !important;
  padding-left: 28px !important;
  margin-bottom: 12px !important;
  color: #173148 !important;
  background: none !important;
  line-height: 1.5;
}

.sppb-addon-text .cta-checklist ul li:last-child,
.cta-checklist ul li:last-child {
  margin-bottom: 0 !important;
}

.sppb-addon-text .cta-checklist ul li::marker,
.cta-checklist ul li::marker {
  color: transparent !important;
  font-size: 0 !important;
}

.sppb-addon-text .cta-checklist ul li::before,
.cta-checklist ul li::before {
  content: '\27A4' !important; 
  color: #7d2827 !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: bold;
}

.sppb-addon-text .cta-perks,
.cta-perks {
  font-weight: 700;
  color: #173148 !important;
  margin-bottom: 16px !important;
  font-size: 1rem;
}

.sppb-addon-text .cta-action,
.cta-action {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0 !important;
  color: #7d2827 !important;
}

/* --- 8. Κεντρικό Κουμπί Κλήσης (Primary Button) --- */
.gt-cta-button-wrapper {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.gt-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #173148 !important; /* Αρχικό χρώμα: Σκούρο Μπλε */
  color: #ffffff !important;
  padding: 16px 36px !important;
  border-radius: 8px !important; 
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(23, 49, 72, 0.25) !important;
  border: 2px solid transparent !important;
}

/* Hover Effect: Γίνεται Σκούρο Κόκκινο και σηκώνεται */
.gt-btn-primary:hover {
  background-color: #7d2827 !important; /* Χρώμα Hover: Σκούρο Κόκκινο */
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(125, 40, 39, 0.3) !important;
  color: #ffffff !important;
}

.gt-btn-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gt-btn-primary:hover .gt-btn-icon {
  transform: scale(1.1) rotate(5deg);
}

/* --- 9. Γενική Λίστα Χαρακτηριστικών Προϊόντος (2-Column Grid) --- */
.sppb-addon-text .sppb-block--features-grid,
.sppb-block--features-grid {
  max-width: 900px;
  margin: 0 auto 32px auto;
  color: #173148 !important;
}

.sppb-addon-text .features-grid-list,
.features-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px 32px; 
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.sppb-addon-text .features-grid-list li,
.features-grid-list li {
  position: relative !important;
  padding-left: 32px !important;
  color: #173148 !important;
  line-height: 1.5;
  background: none !important;
  margin-bottom: 0 !important; 
}

.sppb-addon-text .features-grid-list li::marker,
.features-grid-list li::marker {
  color: transparent !important;
  font-size: 0 !important;
}

.sppb-addon-text .features-grid-list li::before,
.features-grid-list li::before {
  content: '\2713' !important; 
  color: #7d2827 !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

.sppb-addon-text .features-grid-list strong,
.features-grid-list strong {
  color: #7d2827 !important;
}

.sppb-addon-text .features-important-note,
.features-important-note {
  background-color: rgba(125, 40, 39, 0.05) !important;
  border-left: 4px solid #7d2827 !important;
  padding: 16px 24px !important;
  margin-top: 32px !important;
  border-radius: 4px;
}

.sppb-addon-text .features-important-note p,
.features-important-note p {
  margin: 0 !important;
  color: #173148 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.sppb-addon-text .features-important-note strong,
.features-important-note strong {
  color: #7d2827 !important;
}

/* --- 10. Κουμπιά Λήψης Αρχείων (Download Buttons) --- */
.gt-download-buttons-wrapper {
  display: flex;
  flex-wrap: wrap; 
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
  justify-content: flex-start; 
}

.gt-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #eeebe5 !important;
  color: #173148 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important; 
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(23, 49, 72, 0.1) !important;
}

.gt-btn-download:hover {
  background-color: #173148 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(23, 49, 72, 0.2) !important;
  border-color: #173148 !important;
}

.gt-btn-download svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gt-btn-download:hover svg {
  transform: translateY(2px);
}

/* --- 11. FAQ Section (Unique Classes to prevent conflicts) --- */
.sppb-addon-text .sppb-block--electric-faq,
.sppb-block--electric-faq {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.sppb-addon-text .gt-faq-main-title,
.gt-faq-main-title {
  text-align: center;
  color: #173148 !important;
  font-weight: 700;
  margin-bottom: 32px !important;
  font-size: 1.75rem;
}

/* Το κάθε κουτάκι ερώτησης-απάντησης */
.sppb-addon-text .gt-faq-item,
.gt-faq-item {
  background-color: #ffffff !important;
  border: 1px solid rgba(23, 49, 72, 0.1) !important;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(23, 49, 72, 0.03);
  transition: box-shadow 0.3s ease;
}

.sppb-addon-text .gt-faq-item:hover,
.gt-faq-item:hover {
  box-shadow: 0 4px 15px rgba(23, 49, 72, 0.08);
}

/* Η Ερώτηση (Summary) */
.sppb-addon-text .gt-faq-question,
.gt-faq-question {
  padding: 20px 48px 20px 24px !important;
  font-weight: 700;
  font-size: 1.15rem;
  color: #173148 !important;
  cursor: pointer;
  list-style: none; /* Κρύβει το default βελάκι */
  position: relative;
  background-color: #fcfcfc !important;
  transition: background-color 0.2s ease;
  margin: 0 !important;
  display: block; /* Απαραίτητο για ορισμένους browsers */
}

.sppb-addon-text .gt-faq-question:hover,
.gt-faq-question:hover {
  background-color: #eeebe5 !important;
}

/* Κρύβει το default marker στον Safari/Chrome */
.sppb-addon-text .gt-faq-question::-webkit-details-marker,
.gt-faq-question::-webkit-details-marker {
  display: none;
}

/* Εικονίδιο "+" (ΑΥΣΤΗΡΑ ΜΟΝΑ ΕΙΣΑΓΩΓΙΚΑ) */
.sppb-addon-text .gt-faq-question::after,
.gt-faq-question::after {
  content: '+' !important; 
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 400;
  color: #7d2827 !important;
  transition: transform 0.3s ease;
}

/* Εικονίδιο "-" όταν είναι ανοιχτό */
.sppb-addon-text .gt-faq-item[open] .gt-faq-question::after,
.gt-faq-item[open] .gt-faq-question::after {
  content: '-' !important;
  transform: translateY(-50%) rotate(180deg);
}

/* Το κείμενο της Απάντησης */
.sppb-addon-text .gt-faq-answer,
.gt-faq-answer {
  padding: 0 24px 24px 24px !important;
  color: #173148 !important;
  line-height: 1.6;
  border-top: 1px solid rgba(23, 49, 72, 0.05);
  margin-top: 16px;
}

.sppb-addon-text .gt-faq-answer p,
.gt-faq-answer p {
  margin-bottom: 12px !important;
  color: #173148 !important;
}

.sppb-addon-text .gt-faq-answer ul,
.gt-faq-answer ul {
  margin-bottom: 16px !important;
  padding-left: 20px !important;
}

.sppb-addon-text .gt-faq-answer li,
.gt-faq-answer li {
  margin-bottom: 8px !important;
}

/* Διακριτικό κουτάκι (Notice) μέσα στις απαντήσεις */
.sppb-addon-text .gt-faq-notice,
.gt-faq-notice {
  background-color: rgba(125, 40, 39, 0.05) !important;
  border-left: 3px solid #7d2827 !important;
  padding: 12px 16px !important;
  font-style: italic;
  font-size: 0.95rem;
  border-radius: 4px;
  margin-top: 16px;
}

/* --- Πρόσθεσε/Αντικατάστησε αυτά στο CSS σου για να υποστηρίξουν τα νέα SVGs --- */

/* SVG bullets στο Cost Section */
.cost-list-svg {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
}

.cost-list-svg li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  margin-bottom: 12px !important;
  background: none !important;
  padding-left: 0 !important;
}

.cost-list-svg li svg {
  color: #7d2827;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Tip Icon Alignment */
.cost-tip {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(23, 49, 72, 0.2);
}

.cost-tip-icon svg {
  color: #7d2827;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cost-tip p {
  margin: 0 !important;
  flex: 1;
}

/* Benefit Icon SVG in Smart Home */
.benefit-icon-svg {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   FAIRLAND R290 RESPONSIVE FIXES (Νέα Στοιχεία)
   ========================================================================== */

/* 1. Στοίχιση Τεχνικών Χαρακτηριστικών (Εικόνα & Κείμενο) στα κινητά */
@media (max-width: 768px) {
  .specs-container {
    flex-direction: column !important;
    text-align: center;
  }
  
  .specs-container .specs-highlight-card {
    text-align: left; /* Κρατάμε το κείμενο αριστερά για ευκολία ανάγνωσης */
  }

  /* Προσθήκη κενού ανάμεσα στο κείμενο και την εικόνα στα κινητά */
  .specs-image {
    margin-top: 20px;
    width: 100%;
  }
}

/* 2. Στοίχιση Ενότητας App (iGarden) στα κινητά */
@media (max-width: 768px) {
  .sppb-block--app-highlight {
    flex-direction: column !important;
    padding: 25px 15px !important; /* Μικρότερο padding για οθόνες κινητών */
    text-align: center;
  }

  .sppb-block--app-highlight ul li {
    justify-content: center; /* Κεντράρισμα της λίστας στα κινητά */
  }
  
  .sppb-block--app-highlight img {
    max-width: 180px !important; /* Μικραίνουμε ελαφρώς το κινητό στην εικόνα */
    margin-bottom: 20px;
  }
}