/* Modern Style 1 - Gradient Blue Theme */
/* CSS Variables - Color Palette */
:root {
  --primary-color: #02506e;
  --primary-dark: #027baa;
  --secondary-color: #02506e;
  --accent-color: #027baa;
  --background-light: #f8faff;
  --background-dark: #1a202c;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-light: #ffffff;
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --border-color: #c3c9d1;
  --shadow-light: rgba(102, 126, 234, 0.1);
  --shadow-medium: rgba(102, 126, 234, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /*--gradient-primary: linear-gradient(135deg,  var(--secondary-color) 100%,var(--primary-color) 0%);*/
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-olsb: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.8em;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-light);
  scroll-behavior: smooth;
  padding: 0 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
  
ol, ul {
  padding-left: 20px;
}

/* Header Styles */
.header {
  background: var(--gradient-olsb);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,20 Q250,80 500,20 T1000,20 L1000,100 L0,100 Z"/></svg>');*/
  pointer-events: none;
}

.header h1 {
  font-size: 5.5rem;
  font-weight: 100;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideInDown 1s ease-out;
}

.header h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.2s both;
}

.header p {
  font-size: 2.5rem;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeIn 1s ease-out 0.4s both;
}

/* Product Section */
.product {
  padding: 100px 0;
  background: white;
  position: relative;
}

.product::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  /*background: var(--gradient-primary);*/
  /*clip-path: polygon(0 100%, 100% 100%, 100% 80%, 0 0);*/
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-medium);
  margin-bottom: 30px;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-image {
  transform: scale(1.05);
}

.product h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Benefits List */
.benefits {
  list-style: none;
  margin: 30px 0;
}

.benefits li {
  position: relative;
  padding: 15px 0 15px 40px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
  background: rgba(72, 187, 120, 0.1);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bonuses */
.bonuses {
  margin: 40px 0;
}

/*.bonuses h2 {*/
  /*font-size: 2rem;*/
  /*color: var(--primary-color);*/
  /*margin-bottom: 30px;*/
  /*text-align: center;*/
/*}*/

.bonus {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0.1;
  transition: left 0.5s ease;
  z-index: 1;
}

.bonus:hover::before {
  left: 0;
}

.bonus:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-light);
}

.bonus-name {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.bonus-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.bonus-benefit {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Pricing */
.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--success-color);
  display: block;
  margin: 20px 0;
}

.price_old {
  font-size: 1.5rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

/* Buttons */
.sta-buttons {
  margin: 40px 0;
  text-align: center;
}

.theme-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.theme-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:  var(--gradient-olsb);
  transition: left 0.3s ease;
}

.theme-button:hover::before {
  left: 0;
}

.theme-button:hover {
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.btn-text-wrapper {
  position: relative;
  z-index: 2;
}

.buttons-text {
    font-size: 2.9rem;
}
.buttons_urgency {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Sections */
section {
  padding: 80px 0;
}

.solutions {
  background: var(--background-light);
}

.new-way {
  background: white;
}

.testimonials {
  background: var(--background-light);
}

/* Step Boxes */
.step-box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.step-box:hover {
  transform: translateY(-10px);
}

.step {
  background: var(--gradient-olsb);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.step-box h3 {
    font-size: 2.2rem;
}
/* Testimonials */
.testimonial-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Form Styles */
.checkout-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-success {
  background: var(--gradient-primary);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}


.second-product {
    padding: 30px;
    background-color: aliceblue;
    border-radius: 8px;
}

.second-product .promo-header h3 {
  color: var(--primary-color);
}
.second-product .promo-body h3 {
  color: var(--success-color);
}

/* FAQ */
#faq .panel-group .panel-default {
  border: 2px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

#faq .panel-group .panel-heading {
  /*background: var(--gradient-primary);*/
    background: var(--gradient-olsb) !important;
  color: white;
  padding: 20px;
}

#faq .panel-group .panel-title a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

#faq .panel-group .panel-body {
  padding: 20px;
  background: white;
}

/* Footer */
footer {
  background: var(--background-dark);
  color: white;
  padding: 50px 0 20px;
  text-align: center;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 1.8em !important;
  }
  
  .header h1 {
    font-size: 4.0rem;
  }
  
  .header h2 {
    font-size: 2.5rem;
  }
  
  .header h3 {
    font-size: 5.2rem;
  }
  
  .header h4 {
    font-size: 5.0rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .product h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }
}


.offer-countdown-wrapper {
    text-align: center;
    margin: 30px 0;
}

/* Контейнер */
#offer-countdown.flip-clock {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
}

/* Цифри */
#offer-countdown .flip-segment {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, #ae0000, #6c0000);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Надпис под цифрите */
#offer-countdown .flip-segment::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    color: #35534b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Точни позиции според HTML структурата */
#offer-countdown .flip-segment:nth-child(1)::after {
    content: 'дни';
}

#offer-countdown .flip-segment:nth-child(3)::after {
    content: 'часове';
}

#offer-countdown .flip-segment:nth-child(5)::after {
    content: 'минути';
}

#offer-countdown .flip-segment:nth-child(7)::after {
    content: 'секунди';
}


/* Разделители ":" */
#offer-countdown .flip-separator {
    font-size: 32px;
    font-weight: 700;
    color: #00506c;
    padding: 0 4px;
    line-height: 70px;
}

.last-offert {
    color: var(--primary-color);
    font-size: larger;
    text-align: center;
}

/* Inline-modal */

/* Overlay */
.olsb-inline-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999999;
  display: none;
}

/* Panel */
.olsb-inline-panel{
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92vw);
  height: 90vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1000000;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Header (sticky) */
.olsb-inline-header{
  position: sticky;
  top: 0;
  background: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.olsb-inline-title{
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.olsb-inline-close{
  appearance: none;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.olsb-inline-body{
  height: calc(90vh - 56px);
  overflow: auto;
  padding: 18px 16px;
}

.olsb-inline-loading{
  opacity: .75;
  font-size: 14px;
}




/* RESET само за съдържанието в модала */

.olsb-inline-panel .olsb-inline-body p,
.olsb-inline-panel .olsb-inline-body li {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0 0 1em;
}

.olsb-inline-panel .olsb-inline-body h1,
.olsb-inline-panel .olsb-inline-body h2,
.olsb-inline-panel .olsb-inline-body h3,
.olsb-inline-panel .olsb-inline-body h4 {
  line-height: 1.8;
}

body body .olsb-inline-panel .olsb-inline-body p {
  font-size: 1.8em;
}

#cookies {
  z-index: 9999999999;
}

#olsbInlineOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000000000; /* над cookies */
}

#olsbInlinePanel {
  position: fixed;
  z-index: 10000000001; /* над overlay */
}
