.elementor-4768 .elementor-element.elementor-element-5738945{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-4768 .elementor-element.elementor-element-3dba8c4{width:100%;max-width:100%;}.elementor-4768 .elementor-element.elementor-element-63475a4{width:100%;max-width:100%;}.elementor-4768 .elementor-element.elementor-element-35744c3{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-3dba8c4 *//* Product Block */
.custom-product-info {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.custom-product-info .product-image img {
    max-width: 120px;
    border-radius: 10px;
}

.custom-product-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.custom-product-info .price {
    color: #ff1749;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.custom-product-info .desc {
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 480px) {
    .custom-product-info {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-63475a4 *//* ==============================
   General Container
================================= */
.custom-checkout-wrapper,
.custom-product-info {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   Product Info Block
================================= */
.custom-product-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-product-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.custom-product-info .product-image img {
    max-width: 150px;
    border-radius: 12px;
}

.custom-product-info .product-details h2 {
    margin: 0 0 10px;
    color: #ff1749;
    font-size: 22px;
}

.custom-product-info .product-details .price {
    color: #ff1749;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-product-info .product-details .desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ==============================
   Checkout Form
================================= */
.custom-checkout-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-checkout-wrapper label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.custom-checkout-wrapper input[type="text"],
.custom-checkout-wrapper input[type="email"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: border 0.3s;
}

.custom-checkout-wrapper input[type="text"]:focus,
.custom-checkout-wrapper input[type="email"]:focus {
    border-color: #ff1749;
    outline: none;
}

/* ==============================
   Submit Button
================================= */
.custom-checkout-wrapper button[name="custom_checkout_submit"] {
    padding: 14px 0;
    background: #ff1749;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.custom-checkout-wrapper button[name="custom_checkout_submit"]:hover {
    background: #e01440;
    transform: translateY(-2px);
}

/* ==============================
   Buy Now Button
================================= */
.button.buy-now-button {
    padding: 12px 24px;
    border-radius: 30px;
    background: #ff1749 !important;
    color: #fff !important;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    text-decoration: none;
}

.button.buy-now-button:hover {
    background: #e01440 !important;
    transform: translateY(-2px);
}

/* ==============================
   Responsive
================================= */
@media (max-width: 768px) {
    .custom-product-info {
        flex-direction: column;
        text-align: center;
    }

    .custom-product-info .product-image img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .custom-checkout-wrapper,
    .custom-product-info {
        padding: 20px;
        margin: 20px 10px;
    }

    .custom-checkout-wrapper button[name="custom_checkout_submit"] {
        font-size: 15px;
    }

    .custom-product-info .product-details h2 {
        font-size: 20px;
    }

    .custom-product-info .product-details .price {
        font-size: 16px;
    }
}


/* ==============================
   No Product / Invalid Product
================================= */
.custom-product-error {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 14px;
    background: #fff0f0;
    border: 1px solid #ff1749;
    color: #ff1749;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.custom-product-error h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.custom-product-error p {
    font-size: 16px;
    margin-bottom: 20px;
}

.custom-product-error a.go-back-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff1749;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.custom-product-error a.go-back-btn:hover {
    background: #e01440;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .custom-product-error {
        padding: 20px;
        margin: 20px 10px;
    }
}/* End custom CSS */