.pixel-custom-options-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.pixel-custom-options-wrapper h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.option-field-group {
    margin-bottom: 12px;
}

.option-field-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.option-field-group label .required {
    color: red;
    font-weight: bold;
}

.option-field-group select {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* =====================================================
   OUT OF STOCK MESSAGE — Frontend Notice
   ===================================================== */
.pixel-cpo-oos-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 18px;
    background-color: #fff8ec;
    border: 1px solid #f0a500;
    border-left: 4px solid #f0a500;
    border-radius: 6px;
    color: #7a5500;
    font-size: 14px;
    line-height: 1.6;
    animation: pixel-cpo-oos-fadein 0.35s ease;
}

@keyframes pixel-cpo-oos-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pixel-cpo-oos-icon {
    font-size: 20px;
    line-height: 1.4;
    color: #f0a500;
    flex-shrink: 0;
}

.pixel-cpo-oos-text {
    flex: 1;
}

.pixel-cpo-oos-text p {
    margin: 0;
}

/* =====================================================
   CONTINUE SHOPPING BUTTON — Cart Page
   ===================================================== */
.pixel-cpo-continue-shopping {
    display: block !important;
    width: 100%;
    margin-bottom: 12px !important;
    margin-top: 4px !important;
    text-align: center;
    background-color: transparent !important;
    color: #555 !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.pixel-cpo-continue-shopping:hover,
.pixel-cpo-continue-shopping:focus {
    background-color: #f5f5f5 !important;
    border-color: #999 !important;
    color: #333 !important;
    text-decoration: none !important;
    outline: none;
}

/* =====================================================
   CART PAGE — Remove Button (x) Column Width Fix
   x mark eke column eka 30px eka limit karanna
   ===================================================== */
.woocommerce-cart-form table.shop_table td.product-remove,
table.woocommerce-cart-form__contents td.product-remove,
.woocommerce table.shop_table td.product-remove {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.woocommerce-cart-form table.shop_table td.product-remove a,
table.woocommerce-cart-form__contents td.product-remove a,
.woocommerce table.shop_table td.product-remove a {
    display: inline-block !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    font-size: 16px !important;
    text-align: center !important;
    margin: 0 auto !important;
}