.option-title-wrapper {
    display: flex;
}

/* === FAKE RADIO BUTTON STYLING === */
.fake__radio-button {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--project-cart-txt);
    border-radius: 50%;
    background: white;
    position: relative;
    cursor: pointer;
    margin-right: 8px
}
.active .fake__radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--project-green-light);
}

.active .fake__radio-button {
    border-color: var(--project-green-light);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* ===== FAKE DROPDOWN STYLING ===== */
/* Dropdown simulátor styling */
/* Dropdown simulátor styling */
.delivery-frequency {
    display: none;
    width: 100%;
    position: relative;
        margin-top: 16px;
}
.purchase-option.active .delivery-frequency {
    display: block;
}

.frequency-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--project-cart-txt);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 0 !important;
}

/* Selected value field - vyzerá ako select header */
.simulate__selected-subscribe {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--project-cart-txt);
    border-radius: 8px;
    /* background: white; */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--project-cart-txt);
    transition: all 0.3s ease;
    min-height: 20px;
}

.simulate__selected-subscribe:hover {
    border-color: var(--project-green-light);
}

.simulate__selected-subscribe.open {
    border-color: var(--project-green-light);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Šípka v selected field */
.simulate__selected-subscribe::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--project-cart-txt);
}

.simulate__selected-subscribe.open::after {
    transform: rotate(180deg);
}

/* Options container - skrytý štandardne */
.simulate__select {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--project-light);
    border: 2px solid var(--project-cart-txt);
    border-radius: 8px;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: -2px;
    display: none;
}

.simulate__select.open {
    max-height: 200px;
    display: block;
}

/* Individual option styling */
.simulate__select label {
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    border: none !important;
    border-radius: 0 !important;
}

.simulate__select label:last-child {
    border-bottom: none;
}

.simulate__select label:hover {
    background: rgba(76, 175, 80, 0.05) !important;
}
.simulate__select label.selected {
    background-color: #e8f5e8;
    background: rgba(76, 175, 80, 0.05) !important;
}

/* Skryj pôvodné radio buttony */
.simulate__select input[type="radio"] {
    display: none;
}

/* Custom checkmark namiesto radio */
.simulate__select label strong::before {
    content: '';
    width: 18px;
    height: 18px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: var(--project-green-light);
    flex-shrink: 0;
}

.simulate__select input[type="radio"]:checked + strong::before,
.simulate__select label.selected::before {
    content: '✓';
}

/* Text styling */
.simulate__select strong {
    flex: 1;
    font-weight: 600;
    color: var(--project-cart-txt);
    display: flex;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .simulate__selected-subscribe {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .simulate__select label {
        padding: 10px 14px !important;
    }
}

/* ===== ACTIVE SECTION STYLING ===== */
.purchase-option.active {
    border-color: var(--project-green-light) !important;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2) !important;
    /* background: rgba(76, 175, 80, 0.05) !important; */
}

/* .purchase-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.purchase-option:hover {
    border-color: var(--project-cart-txt) !important;
    transform: translateY(-1px);
}

.purchase-option.active:hover {
    border-color: var(--project-green-light) !important;
} */



/* ===== PURCHASE OPTIONS STYLING ===== */
.oppio-purchase-options {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 500px;
}

.purchase-options-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--project-cart-txt);
}

.purchase-option {
    /* border: 2px solid #e5e5e5; */
    border: 2px solid var(--project-cart-txt);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    background: transparent;
}

.purchase-option:hover {
    border-color: var(--project-cart-txt);
}

.purchase-option.selected {
    border-color: var(--project-cart-txt);
    box-shadow: 0 0 0 1px var(--project-cart-txt);
}

.purchase-option label {
    display: flex;
    padding: 20px;
    cursor: pointer;
    margin: 0;
}

.purchase-option input[type="radio"] {
    margin: 0 12px 0 0;
    transform: scale(1.2);
}

.purchase-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--project-cart-txt);
    border-radius: 50%;
    background: white;
    position: relative;
    cursor: pointer;
}

.purchase-option input[type="radio"]:checked {
    border-color: var(--project-cart-txt);
    background: white;
}

.purchase-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--project-green-light);
}

.option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}



.one-time .option-content {
    flex-direction: row;
}



.subscription .option-content {
    flex-direction: column;
    align-items: stretch;
}



.option-title {
    font-size: 16px;
    font-weight: 600;
    color: var('--project-cart-txt');
}

.option-price {
    font-size: 16px;
    font-weight: 600;
    color: var('--project-cart-txt');
}

.subscription-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.min-pieces,
.save-badge {
    background: var(--project-cart-txt);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}
.min-pieces {
    background: #FFD7B3;
    color: var(--project-cart-txt);
}


.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
}



.current-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--project-cart-txt);
}



.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}



.delivery-frequency {
    width: 100%;
}



.frequency-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--project-cart-txt);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 0 !important;
}



.frequency-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--project-cart-txt);
    border-radius: 8px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
}



.frequency-dropdown:focus {
    outline: none;
    border-color: var(--project-green-dark);
}



/* Responsive Mobile */
@media (max-width: 768px) {
    .oppio-purchase-options {
        max-width: 100%;
    }


    .subscription-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    

    .price-display {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
}



/* Vyhody predplatného */

        /* Kontajner pre celú sekciu */

.subscription-benefits-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}



/* Hlavný element s ikonou a textom */

.benefits-trigger {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 24px;

    background: transparent;

    border: 2px solid transparent;

    border-radius: 12px;

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);

}



.benefits-trigger:hover,

.benefits-trigger:focus {

    border: 2px solid var(--project-green-light);

    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);

    transform: translateY(-2px);

}



/* Ikona */

.benefits-icon {

    width: 32px;

    height: 32px;

    flex-shrink: 0;

}



.benefits-icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}



/* Text vedľa ikony */

.benefits-text {

    font-size: 16px;

    font-weight: 600;

    color: #333;

    white-space: nowrap;

}



/* Tooltip kontajner */

.benefits-tooltip {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%);

    margin-top: 12px;

    padding: 20px 24px;

    background: #2d2d2d;

    color: white;

    border-radius: 12px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    z-index: 1000;

    min-width: 320px;

    max-width: 400px;

    

    /* Skrytý štandardne */

    opacity: 0;

    visibility: hidden;

    transform: translateX(-50%) translateY(-10px);

    transition: all 0.3s ease;

}



/* Tooltip šípka */

.benefits-tooltip::before {

    content: '';

    position: absolute;

    top: -8px;

    left: 50%;

    transform: translateX(-50%);

    width: 0;

    height: 0;

    border-left: 8px solid transparent;

    border-right: 8px solid transparent;

    border-bottom: 8px solid #2d2d2d;

}



/* Zobrazenie tooltip pri hover/focus */

.subscription-benefits-container:hover .benefits-tooltip,

.subscription-benefits-container:focus .benefits-tooltip,

.benefits-trigger:focus + .benefits-tooltip {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}



/* Obsah tooltip */

.tooltip-header {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 16px;

    color: var(--project-green-light);

}



.tooltip-content {

    font-size: 14px;

    line-height: 1.6;

}



.tooltip-content ul {

    list-style: none;

    padding: 0;

}



.tooltip-content li {

    position: relative;

    padding-left: 24px;

    margin-bottom: 8px;

}



.tooltip-content li::before {

    content: '✓';

    position: absolute;

    left: 0;

    top: 0;

    color: #4CAF50;

    font-weight: bold;

    font-size: 16px;

}



.tooltip-content li:last-child {

    margin-bottom: 0;

}



/* Responsive */

@media (max-width: 768px) {

    .benefits-tooltip {

        left: 10px;

        right: 10px;

        transform: none;

        min-width: auto;

        max-width: none;

    }



    .benefits-tooltip::before {

        left: 24px;

        transform: none;

    }



    .subscription-benefits-container:hover .benefits-tooltip,

    .subscription-benefits-container:focus .benefits-tooltip {

        transform: translateY(0);

    }



    .benefits-text {

        font-size: 14px;

    }

}



/* Focus accessibility */

.benefits-trigger:focus {

    outline: 2px solid var(--project-green-light);

    outline-offset: 2px;

}



/* Demo kontajner */

.demo-container {

    max-width: 600px;

    margin: 0 auto;

    text-align: center;

}



.demo-title {

    font-size: 24px;

    margin-bottom: 40px;

    color: #333;

}
