
.product-popis {
    margin: 15px auto;
    padding: 30px;
    text-align: left;
    background-color: white;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.product-popis h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.product-popis h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-popis p {
    margin-bottom: 15px;
}

.product-popis ul, .product-popis ol {
    margin-left: 20px !important;
    margin-bottom: 15px !important;
    padding-left: 10px !important;
}

.product-popis ul {
    list-style-type: disc !important;
}

.product-popis ol {
    list-style-type: decimal !important;
}

.product-popis li {
    display: list-item !important;
    margin-bottom: 5px !important;
}

.product-popis-ikony-blok {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 20px;
   width: 100%;
   max-width: 1500px;
   margin: 15px 0 75px 0;
   padding: 15px;
   background-color: white;
   border: 1px dotted grey;
   border-radius: 30px;
   text-align: center;
}

.product-popis-ikony-sloupec {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 120px;
   max-width: 100%;
   padding: 10px;
   box-sizing: border-box;
}

.product-popis-ikony-sloupec img {
   width: 60px;
   height: auto;
   margin-bottom: 10px;
}

.sekce-odstavec {
    margin: 10px 0;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.img-container-popis {
    height: 400px;
    width: 500px;
    margin: 10px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-popis img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.text-container-popis {
    flex: 1;
    text-align: left;
    padding: 15px;
}

@media (max-width: 770px) {
    .sekce-odstavec {
        flex-direction: column;
        align-items: flex-start;
    }

    .img-container-popis {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .text-container-popis {
        width: 100%;
        padding: 10px 0;
    }
}

hr.popis_deleni {
  border-top: 1px dotted grey;
  margin: 40px 0;
}

.plusminus-container-wrapper {
    width: 100%;
    padding: 20px 0 40px 0;
}

.plusminus-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2%;
}

.plusminus-containerleft, .plusminus-containerright {
    width: 49%;
    padding: 40px;
    border-radius: 40px;
    box-sizing: border-box;
}

.plusminus-containerleft {
    background-color: #f1f9f2;
}

.plusminus-containerright {
    background-color: #fff8f7;
}

.plusminus-containerleft h3, .plusminus-containerright h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.plusminus-containeritem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.plusminus-containeritem .circle {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.plusminus-containeritem .text-sm {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    padding-top: 2px;
}

.positive {
    background-color: #42af61;
}

.negative {
    background-color: #db6a59;
}

@media (max-width: 900px) {
    .plusminus-container {
        flex-direction: column;
        gap: 20px;
    }
    .plusminus-containerleft, .plusminus-containerright {
        width: 100%;
    }
}

.cp-tip-box {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: stretch;
    width: 100%;
    background: #f3f3f3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.cp-tip-box__content {
    padding: 20px;
    min-width: 0;
}

.cp-tip-box__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 18px;
    background: #21384e;
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cp-tip-box__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cp-tip-box__text p {
    margin: 0 0 10px;
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
}

.cp-tip-box__text p:last-child {
    margin-bottom: 0;
}

.cp-tip-box__expert {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.cp-tip-box__photo-wrap {
    width: 100%;
    height: 100%;
}

.cp-tip-box__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cp-tip-box__label {
    position: absolute;
    left: -30px;
    bottom: 20px;
    background: #21384e;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 999px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

.cp-tip-box__name {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.cp-tip-box__role {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cp-tip-box {
        grid-template-columns: 1fr;
    }

    .cp-tip-box__photo-wrap {
        height: 240px;
    }

    .cp-tip-box__label {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}
