@charset "UTF-8";

/* ==========================================
   PRODUCT GUIDE - design webu, modr? akcent
   ========================================== */

.guide-main-title {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 15px;
    position: relative;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.005em;
    line-height: 32px;
}

.guide-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4386fc;
    border-radius: 2px;
}

.pg-navigation-hint {
    text-align: center;
    color: #000;
    font-size: 13px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.pg-navigation-hint i {
    display: inline-block;
    margin: 0 3px;
    color: #4386fc;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==========================================
   QUESTION TAGS
   ========================================== */
.pg-question-tag {
    position: relative;
    padding-left: 30px !important;
}

.pg-question-tag::before {
    content: attr(data-step);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    background-color: #4386fc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.pg-question-tag.active::before {
    background-color: white;
    color: #4386fc;
}

/* ==========================================
   SUBTITLE SE STEP ??SLY
   ========================================== */
.pg-subtitle {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left !important;
    margin-bottom: 30px !important;
    font-size: 20px;
    padding-left: 0 !important;
    font-weight: 400;
    color: #000;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.005em;
    line-height: 30px;
}

.step-number {
    background-color: #4386fc;
    color: white;
    border-radius: 2px;
    padding: 4px 12px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
    border: 1px solid #3c78e2;
    box-shadow: 0px -2px 0px rgba(0,0,0,0.15) inset, 0px 3px 0px rgba(255,255,255,0.1) inset;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* ==========================================
   VIDEO BANNER
   ========================================== */
.pg-video-banner {
    display: flex;
    background-color: #ffffff;
    border-radius: 2px;
    margin: 0 0 15px;
    overflow: hidden;
    border: 1px dotted #c7c7c8;
    cursor: pointer;
    transition: all 0.2s ease;
    height: auto;
    margin-top: 15px;
    position: relative;
    box-shadow:
        inset 0 3px 46px rgba(237, 238, 243, 0.35),
        0px 2px 3px 0px rgba(166, 193, 208, 0.42),
        0px 2px 11px 0px rgba(166, 193, 208, 0.35);
}

.pg-video-banner::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #4386fc;
    z-index: 2;
}

.pg-video-banner:hover {
    box-shadow:
        0px 2px 10px 0px rgba(166, 193, 208, 0.75),
        0px 2px 3px 0px rgba(166, 193, 208, 0.82);
    transform: translateY(-2px);
}

.pg-video-banner-thumbnail {
    height: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.pg-video-banner-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease;
}

.pg-video-banner:hover .pg-video-banner-thumbnail img {
    transform: scale(1.05);
    opacity: 0.9;
}

.pg-video-banner-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: none;
}

.pg-video-banner-play svg {
    width: 24px;
    height: 24px;
    color: white;
}

.pg-video-banner:hover .pg-video-banner-play {
    background-color: rgba(0, 0, 0, 0.85);
    transform: translate(-50%, -50%) scale(1.1);
}

.pg-video-banner-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

.pg-video-banner-content::before {
    display: none;
}

.pg-video-banner-title {
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
    font-size: 16px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.005em;
    line-height: 1.35;
}

.pg-video-banner-desc {
    color: #000;
    margin: 0;
    line-height: 1.714;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.pg-video-banner-cta {
    margin-top: 10px;
    font-size: 13px;
    color: #4386fc;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.pg-video-banner-cta:hover {
    color: #000;
}

.pg-video-banner-cta svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* ==========================================
   CONTROLS CONTAINER
   ========================================== */
.pg-controls-container {
    background-color: #eef5f9;
    border-radius: 2px;
    padding: 15px 20px;
    border: 1px solid #cedee7;
    box-shadow: 0px 5px 0px 0px #e2eef7 inset;
}

/* ==========================================
   PRODUCT GUIDE WRAPPER
   ========================================== */
.product-guide-wrapper {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 1.714;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #fff;
    padding: 20px;
    border-radius: 2px;
    box-shadow:
        inset 0 3px 46px rgba(237, 238, 243, 0.35),
        0px 2px 3px 0px rgba(166, 193, 208, 0.42),
        0px 2px 11px 0px rgba(166, 193, 208, 0.35);
    margin-top: 20px;
}

.product-guide-wrapper * {
    box-sizing: border-box;
}

/* ==========================================
   PROGRESS BAR
   ========================================== */
.product-guide-wrapper .pg-progress-bar {
    width: 100%;
    height: 6px;
    background-color: #eef5f9;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #cedee7;
}

.product-guide-wrapper .pg-progress {
    width: 0;
    height: 100%;
    background-color: #4386fc;
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* ==========================================
   TITLES
   ========================================== */
.product-guide-wrapper .pg-title,
.product-guide-wrapper .pg-subtitle {
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.005em;
}

.product-guide-wrapper .pg-question {
    margin-bottom: 20px;
    margin-top: 20px;
}

/* ==========================================
   OPTIONS GRID
   ========================================== */
.product-guide-wrapper .pg-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

/* ==========================================
   OPTION CARD
   ========================================== */

/* Default: 3 karty vedle sebe */
.product-guide-wrapper .pg-option-card {
    width: calc((705px - 40px) / 3);
    border: 1px dotted #c7c7c8;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow:
        inset 0 3px 46px rgba(237, 238, 243, 0.35),
        0px 2px 3px 0px rgba(166, 193, 208, 0.42),
        0px 2px 11px 0px rgba(166, 193, 208, 0.35);
}

/* 2 karty → vedle sebe */
.product-guide-wrapper .pg-options:has(.pg-option-card:nth-child(2):last-child) .pg-option-card {
    width: calc((680px - 20px) / 2);
}

/* 4 karty → 2×2 grid (2 nahoře, 2 dole) */
.product-guide-wrapper .pg-options:has(.pg-option-card:nth-child(4):last-child) .pg-option-card {
    width: calc((680px - 20px) / 2);
}

.product-guide-wrapper .pg-option-card.zero-products {
    border-color: #f02020;
    border-style: solid;
}

.product-guide-wrapper .pg-option-card:hover {
    box-shadow:
        0px 2px 10px 0px rgba(166, 193, 208, 0.75),
        0px 2px 3px 0px rgba(166, 193, 208, 0.82);
    border-color: #4386fc;
    border-style: solid;
    transform: translateY(-3px);
}

.product-guide-wrapper .pg-option-card.zero-products:hover {
    border-color: #f02020;
}

.product-guide-wrapper .pg-option-card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.product-guide-wrapper .pg-option-card:hover .pg-option-card-image {
    transform: scale(1.05);
}

.product-guide-wrapper .pg-option-card-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-guide-wrapper .pg-option-card-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #000;
    margin-top: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.005em;
    line-height: 1.4;
}

.product-guide-wrapper .pg-option-card-description {
    font-size: 12px;
    color: #000;
    margin-bottom: 0;
    flex-grow: 1;
    margin-top: 0;
    line-height: 1.714;
    font-weight: 300;
}

/* ==========================================
   CHECKBOX NA KART?
   ========================================== */
.product-guide-wrapper .pg-checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 50%;
    z-index: 2;
    box-sizing: border-box;
}

.product-guide-wrapper .pg-selected .pg-checkbox {
    background-color: #4386fc;
    border-color: #4386fc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.product-guide-wrapper .pg-selected .pg-checkbox:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: translate(-50%, -58%) rotate(45deg);
}

/* ==========================================
   CONTROLS & BUTTONS
   ========================================== */
.product-guide-wrapper .pg-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-guide-wrapper .pg-toggle-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.product-guide-wrapper .pg-toggle-checkbox input {
    margin-right: 10px;
}

.product-guide-wrapper .pg-buttons {
    display: flex;
    gap: 15px;
}

.product-guide-wrapper .pg-back-button,
.product-guide-wrapper .pg-reset-button {
    background-color: transparent;
    border: none;
    color: #4386fc;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dotted #4386fc;
}

.product-guide-wrapper .pg-back-button:hover,
.product-guide-wrapper .pg-reset-button:hover {
    color: #000;
    border-color: #000;
}

/* ==========================================
   QUESTIONS LIST (TAGY)
   ========================================== */
.product-guide-wrapper .pg-questions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-guide-wrapper .pg-question-tag {
    background-color: #eef5f9;
    color: #000;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    border: 1px solid #cedee7;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.product-guide-wrapper .pg-question-tag:hover {
    border-color: #4386fc;
    color: #4386fc;
    box-shadow: inset 0 0 0 1px #4386fc;
}

.product-guide-wrapper .pg-question-tag.active {
    background-color: #4386fc;
    color: white;
    border-color: #3c78e2;
    border-style: solid;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.product-guide-wrapper .pg-question-tag.hidden {
    display: none;
}

/* ==========================================
   FIN?LN? V?B?R
   ========================================== */
.pg-final-selection-list {
    background-color: #eef5f9;
    border-radius: 2px;
    padding: 20px;
    border: 1px solid #cedee7;
    box-shadow: 0px 5px 0px 0px #e2eef7 inset;
}

.pg-final-selection-item {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    font-weight: 300;
    color: #000;
    line-height: 1.714;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.pg-final-selection-item:last-child {
    margin-bottom: 0;
}

.pg-final-selection-item strong {
    min-width: 130px;
    display: inline-block;
    color: #000;
    font-weight: 500;
}

.pg-product-count {
    margin-bottom: 20px;
    border-bottom: 1px dotted #c7c7c8;
    padding-bottom: 15px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.pg-count-value {
    font-weight: 500;
    color: #4386fc;
}

.pg-no-options-message {
    text-align: center;
    padding: 20px;
    color: #000;
    font-style: italic;
    background-color: #eef5f9;
    border-radius: 2px;
    margin-top: 20px;
    border: 1px dotted #c7c7c8;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ==========================================
   PRODUCT COUNT BADGE
   ========================================== */
.product-count-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4386fc;
    color: white;
    border-radius: 2px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    border: 1px solid #3c78e2;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.01em;
}

.product-count-badge.zero {
    background-color: #f02020;
    color: white;
    border-color: #d81b1b;
}

.pg-loading {
    text-align: center;
    padding: 30px;
    font-style: italic;
    color: #000;
    font-weight: 300;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* ==========================================
   FIN?LN? KROK
   ========================================== */
.pg-final-step-container {
    margin-top: 20px;
}

.pg-final-selections {
    width: 100%;
}

/* ==========================================
   VIDEO LIGHTBOX
   ========================================== */
.rw-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

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

.rw-lightbox-content {
    position: relative;
    width: 800px;
    max-width: 90%;
    animation: slideIn 0.4s;
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.rw-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 75%);
    padding: 10px;
}

.rw-lightbox-close:hover {
    color: #4386fc;
}

.rw-lightbox-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 2px;
}

.rw-lightbox-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   RESPONSIVE - VIDEO BANNER
   ========================================== */
@media (max-width: 600px) {
    .pg-video-banner {
        flex-direction: column;
        height: auto;
    }

    .pg-video-banner-thumbnail {
        width: 100%;
        height: 180px;
    }
}