.woocommerce form select {
    background: #000;
}

#account_reset_field {
    border: 1px solid;
    padding: 12px;
    border-radius: 3px;
    margin-bottom: 20px;
}

#account_reset_field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.ptt-tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.ptt-tooltip-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.ptt-tooltip-icon:hover {
    background-color: #000;
}

.ptt-tooltip-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-top: 8px;
    min-width: 250px;
    max-width: 500px;
    white-space: normal;
    word-wrap: break-word;
}

.ptt-tooltip-content p {
    font-size: 14px;
}

.ptt-tooltip-content p:last-of-type {
    margin-bottom: 0;
}

.ptt-tooltip-content::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #333;
}

.ptt-tooltip-wrapper:hover .ptt-tooltip-content {
    display: block !important;
}

.selectable-addons {
    display: flex;
    gap: 12px;
    flex-direction: row-reverse;
    max-width: fit-content;
}

.addon-option {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    color: #fff;
}

.addon-option.selected {
    background-color: #777;
    color: #fff;
    border-color: #777;
}

.cart_item .product-quantity {
    display: none;
}