*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #1a5f6e;
  --dark: #1a1a2e;
  --red: #c0392b;
  --gold: #d4a017;
  --green: #27ae60;
  --bg: #f5f5f0;
  --white: #ffffff;
  --gray: #666;
  --border: #ddd;
}

body {
font-family: 'Bitter', serif;
  background: var(--bg);
  color: #222;
  font-size: 18px;
  line-height: 1.75;
}

.centerhere { text-align: center!important;}

.centred {
    max-width: 1168px;
    margin: 0 auto;

}

.padtb { padding:12px 0px; font-size: 22px;}

.martop15 { margin-bottom: 10px;}

p { line-height: 1.6;
        font-size: 20px;
        color: rgb(43, 43, 43);
        font-weight: 400;
        margin-bottom: 10px;}

/* HEADER */
.site-header {
  background:  #124d59;
  text-align: left;
  padding: 12px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-left: 20px;
  
}

/* MAIN LAYOUT */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 1fr 345px;
  gap: 32px;
  align-items: start;
}

.logoimg { max-width: 200px;}
.flexer { display: flex;  align-items: center;}

.extracolor { font-weight: bold;}
/* MAIN CONTENT */
.main-content {
  background: var(--white);
  padding: 20px 20px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
}
.breadcrumb span { color: var(--teal); font-weight: 600; }
.breadcrumb-sep { color: #999; }

/* ARTICLE HEADLINE */
.article-title {
font-family: 'Bitter', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-title  span {
  color:#054620;
}

.ptop { margin-top: 20px;}

/* META */
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.article-meta .views { color: var(--teal); font-weight: 600; }

.article-byline {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.leftflex { 
  display: flex;
  align-items: center;

}

.moveup { margin-top: 10px; }

/* CTA Floating traka */
.cta-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 999;
  display: none; /* skriveno na startu */
}

.cta-floating-bar a {
  display: inline-block;
  background:rgb(71, 144, 26) !important;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;

}


.drline{ font-size:15px; font-weight: 500; color:#111; }

.article-byline strong { color: var(--dark); font-style: normal; }

/* BODY TEXT */
.article-body p {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: 'Bitter', serif;
  color: #303030;
  line-height: 1.5;
}

.article-body strong { font-weight: 700;   font-family: 'Bitter', serif;}
.article-body em     { font-style: italic;  font-weight: 500;  font-family: 'Bitter', serif;}

/* SECTION HEADINGS */
.section-heading {
 font-family: 'Bitter', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0 10px;
  padding-top: 8px;
  text-transform: uppercase;
  line-height: normal;
}

.juster { font-size: 26px!important;}

.section-heading span { color:#03662c; font-weight: bold;}

/* IMAGES */
.article-image {
  width: 40px;
  height: auto;
  display: block;
  margin: 12px 0;
  border-radius: 50%;
  margin-right: 10px;

}

.social-icons { 
  max-height: 30px;
}

/* VIDEO SPLIT */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.media-split-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.media-split-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.media-item {
  position: relative;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.media-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.85;
}

.media-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.media-item .play-btn::after {
  content: '';
  border-left: 18px solid var(--teal);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.media-caption {
  color: var(--gray);
  text-align: left;
  margin-top: 6px;

}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 17px;
  font-style: italic;
}

/* STEPS LIST */
.steps-list {
  list-style: none;
  margin: 20px 0;
}

.listaresults li  { font-size: 20px;}

.steps-list li {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
  padding: 8px 10px; 
  background: #f1fbf7;
  border-radius: 6px;
  border-left: 4px solid var(--teal);
  font-size: 20px;
}

.steps-list li .step-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  min-width: 32px;
}

.steps-list li .step-content strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--dark);
  font-family: 'Bitter', serif;
}



.minute-process-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 10px 0;
}

.minute-card {
 background:#fff;
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:18px;
  margin-bottom:20px;
  display:flex;
  gap:20px;
  align-items:center;
}

.minute-card-img {
  width: 30%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.minute-card-content {
  flex: 1;
}




.minute-title{
    font-weight:700;
    font-size:20px;
    margin-bottom:8px;
    color:#1c1c1c;

}


.minute-text{
    font-size:18px;
    line-height:1.6;
    color:#000;
}

.after12box{
    margin-top:20px;
    background:#f7fdf8;
    border:1px solid #cfe5d3;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    line-height:1.7;
    margin-bottom: 15px;
}



.footer-links2 a { color:#ccc; padding: 0px 10px;}


.fullimggif { max-width: 500px; width: 100%; margin-bottom: 15px;}

.steps-list li .step-content span {
  font-size: 18px;
  color: var(--gray);
  font-family: 'Bitter', serif;
}

/* PRICE COMPARISON TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 18px;
}

.price-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
}

.price-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.price-table tr:nth-child(even) td { background: #f8f8f8; }
.price-table .price-bad { color: var(--red); font-weight: 700; }
.price-table .price-good { color: var(--green); font-weight: 700; }

/* CTA BUTTON */
.cta-wrapper {
  text-align: center;
  margin: 32px 0;
}

.cta-btn {
  display: inline-block;
  background: rgb(71, 144, 26);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(156, 240, 163, 0.4);

}

.cta-btn:hover {
  background: #e8b520;
  transform: translateY(-2px);
}

.cta-sub {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
  border-radius: 4px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonials { margin: 24px 0; }

.testimonial-card {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.testimonial-stars { color: #f39c12; font-size: 18px; margin-bottom: 8px; }

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

/* GUARANTEE BOX */
.guarantee-box {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f0faf4;
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
}

.guarantee-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-box h3 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 8px;
}

.guarantee-box p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* TWO PATH */
.two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.path-bad {
  background: #fdf2f2;
  border: 2px solid #e74c3c;
  border-radius: 8px;
  padding: 20px;
}

.path-good {
  background: #f0faf4;
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 20px;
}

.path-bad h4 { color: #111; font-size: 18px; margin-bottom: 12px;   }
.path-good h4 { color: #111; font-size: 18px; margin-bottom: 12px;  }

.path-bad ul, .path-good ul {
  list-style: none;
  padding: 0;
}

.path-bad ul li, .path-good ul li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.path-bad ul li::before {  color: var(--red); position: absolute; left: 0; }
.path-good ul li::before { content: "✓"; color: var(--green); position: absolute; left: 0; }

/* STEPS TO ORDER */
.order-steps {
  counter-reset: step;
  list-style: none;
  margin: 20px 0;
}

.order-steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 20px;

}

.order-steps li::before {
  content: counter(step);
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* DISCLAIMER */
.disclaimer {
  background: #46676b;
  border: 1px solid #ddd;
  padding: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  padding-bottom: 150px;
}
.disclaimertxt {  font-size: 14px; color:#b9b9b9!important; }

.checkout-note-box{
    max-width:900px;
    margin:22px auto;
    padding:14px 20px;
    background:#fffef7;
    border:1px solid #fff2b8;
    border-radius:8px;
    font-size:15px;
    line-height:1.6;
    color:#444;
}

.avat { max-width: 40px;}

.center { max-width: 1200px; text-align: center; width: 100%; margin: 0px auto; }


/* FAKE COMMENTS */
.comments-section { margin-top: 40px; }
.comments-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.comment {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}



.comment-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.comment-text { font-size: 16px; color: #444; line-height: 1.6; }
.comment-time { font-size: 12px; color: #999; margin-top: 4px; }
.comment-likes { font-size: 12px; color: var(--teal); margin-top: 4px; cursor: pointer; }

/* SIDEBAR */
.sidebar { position: sticky; top: 20px;  }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

.sidebar-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}

.sidebar-cta {
  display: block;
  background: var(--gold);
  color: #1a1a1a;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 12px;
}


/* ================================
   GLOBAL MOBILE IMAGE/VIDEO FIX
================================ */

img,
video,
iframe {
    max-width: 100%;
    height: auto;
 }

/* svi containteri da ne probijaju ekran */
.container,
.row,
div,
section {
    box-sizing: border-box;
}

/* sprecava horizontalni scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* responsive Vimeo/Youtube/video wrappers */
.video-container,
iframe,
video {
    width: 100% !important;
    height: auto !important;
}

/* ako imas slike unutar kolona */
[class*="col-"] img,
[class*="col-"] video {
    width: 100%;
    height: auto;
}







/* RESPONSIVE */
@media (max-width: 900px) {
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .media-split { grid-template-columns: 1fr; }
  .media-split-3 { grid-template-columns: 1fr 1fr; }
  .media-split-4 { grid-template-columns: 1fr 1fr; }
  .two-path { grid-template-columns: 1fr; }
  .article-title { font-size: 26px; }
}

@media (max-width: 600px) {


  .sidebar{    display:none;}
  .main-content { padding: 20px 18px; }
  .media-split-3, .media-split-4 { grid-template-columns: 1fr; }
  .article-title { font-size: 26px; }
  .cta-btn { font-size: 17px; padding: 16px 22px; }

.site-header { width: 100%; padding: 8px 5px; }
.centred { width: 100%; text-align: center; font-size: 22px; line-height: normal;}

.page-wrapper { width: 100%; margin: 0px auto;  padding: 10px 1px;}
.main-content { max-width: 98%; padding: 15px 1%; margin: 0px auto;  }
.breadcrumb { font-size: 16px;}
.article-body em { font-size: 17px; line-height: 23px;}
.drline { font-size: 14px; padding-left: 7px;}
body {line-height: normal; }
.social-icons {    max-height: 20px;}
.article-image { width: 50px; }
.article-body p { line-height: 1.6;  font-size: 18px; color:rgb(43, 43, 43) !important; font-weight: 400!important; margin-bottom: 10px;}
.section-heading { font-size: 22px;}
.highlight-box { padding:5px 5px 5px 10px; margin: 10px 0px; font-size: 16px;}
.article-body em { font-size: 18px;}

.putdown { margin-top: 15px;}
.article-byline { display: block;}
.rightflex  { text-align: right;}
.steps-list li .step-content span { font-size: 18px!important;}

  .minute-card {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .minute-card-content {
    display: flex;
    flex-direction: column;
  }

  .minute-title {
    order: 1;
  }

  .minute-card-img {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 10px;
  }

  .minute-text {
    order: 3;
  }

.price-table  { width: 98%; margin:0px auto;}
.cta-floating-bar a {      padding: 16px 10px!important;}
.cta-floating-bar { padding: 16px 10px!important; }
.expert-section { padding: 45px 10px!important;}
.solution-section  { padding: 45px 10px!important;}
.problem-section { padding: 45px 10px!important;}
.container  { padding:0px!important; width: 100%;}
.hero-section { padding: 40px 10px;}

}


