.elementor-667524 .elementor-element.elementor-element-41b1433{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-667524 .elementor-element.elementor-element-3d01a56{width:var( --container-widget-width, 64.122% );max-width:64.122%;--container-widget-width:64.122%;--container-widget-flex-grow:0;}.elementor-667524 .elementor-element.elementor-element-3d01a56.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-3d01a56 */<style>
/* GOOGLE FONT (add in head if not added) */
/* <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet"> */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fafad7, #f3e5ab, #fff);
}

/* MAIN WRAPPER (ONLY THIS HAS DESIGN) */
.wrapper {
    max-width: 1300px; /* pehle 850 tha */
    margin: 80px auto;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fffaf5, #fff);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}


/* subtle premium glow */
.wrapper::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,140,0,0.15), transparent);
    z-index: 0;
}

/* HEADING */
h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #7a1f1f;
}

/* FORM */
.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

/* INPUT */
input {
    width: 90%; /* pehle 70% tha */
    max-width: 500px;
    padding: 16px;
    border-radius: 30px; /* 👈 yeh main change hai */
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 15px;
    transition: 0.25s;
}


input:focus {
    border-color: #b76e00;
    box-shadow: 0 0 0 3px rgba(183,110,0,0.1);
    outline: none;
}

/* BUTTON */
button {
    margin-top: 10px;
    padding: 14px 80px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    background: linear-gradient(90deg, #b76e00, #ffb347);
    color: white;
    transition: 0.25s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(183,110,0,0.25);
}

/* RESULT */
#result {
    text-align: center;
    margin-top: 40px;
}

/* PRODUCT CARD */
.product-box {
    margin-top: 20px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: 0.3s;
}

.product-box:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.product-box img {
    width: 240px;
    border-radius: 12px;
}

/* TITLE */
.product-box h4 {
    margin: 15px 0;
    font-size: 17px;
    color: #7a1f1f;
}

/* LINK BUTTON */
.product-box a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    background: linear-gradient(90deg, #b76e00, #ffb347);
    color: #fff;
    font-size: 13px;
    transition: 0.25s;
}

.product-box a:hover {
    box-shadow: 0 8px 18px rgba(183,110,0,0.3);
}
</style>/* End custom CSS */