/* Professional Form Redesign */

/* Wrapper */
#terra-wrapper {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    /* Constrain width for better readability */
    margin: 40px auto;
    /* Center gently */
    font-family: 'Inter', sans-serif;
}

/* Product & Price Section */
#terra-wrapper .prod-wrapper {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

#terra-wrapper .prod_img {
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#terra-wrapper .prod_img:hover {
    transform: scale(1.02);
}

/* Price Tag Redesign */
#terra-wrapper .price {
    background: linear-gradient(135deg, #da1884, #bb0a6b);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -20px;
    right: 30px;
    /* Adjusted position */
    box-shadow: 0 6px 15px rgba(218, 24, 132, 0.4);
    transform: rotate(5deg);
    border: 3px solid #fff;
    z-index: 10;
}

#terra-wrapper .price .discount {
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
    width: auto;
}

#terra-wrapper .price .al-cost-promo {
    font-size: 16px;
    opacity: 0.8;
    text-decoration: line-through;
    font-weight: 500;
}

#terra-wrapper .price .al-cost {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: white !important;
    /* Override red */
    border-bottom: none !important;
}

/* Timer Section */
#terra-wrapper .offer-wrapper {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    /* Space from image */
    margin-bottom: 25px;
    text-align: center;
}

#terra-wrapper .offer-wrapper div {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

#terra-wrapper .offer-wrapper .timer {
    font-size: 28px;
    color: #da1884;
    font-weight: 800;
    margin-top: 5px;
    letter-spacing: 1px;
}

#terra-wrapper .timer span {
    color: #da1884 !important;
    /* Override red */
}

/* Form Styling */
#terra-wrapper .al-form {
    max-width: 100%;
}

#terra-wrapper .al-form .label {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

#terra-wrapper .al-form input,
#terra-wrapper .al-form select {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

#terra-wrapper .al-form input:focus {
    border-color: #da1884;
    box-shadow: 0 0 0 3px rgba(218, 24, 132, 0.1);
    outline: none;
}

/* Button Styling */
#terra-wrapper .terra-btn {
    background: linear-gradient(135deg, #da1884 0%, #a4065e 100%) !important;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(218, 24, 132, 0.3);
    border: none;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#terra-wrapper .terra-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(218, 24, 132, 0.4);
    opacity: 1 !important;
}

/* Footer Element */
#terra-wrapper .time-remains {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

#terra-wrapper .time-remains span {
    color: #333 !important;
    font-weight: 600;
    font-size: 13px;
}

/* Trust Badges Area (to be added in HTML potentially) */
.pro-form-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-bottom: 10px;
}

.pro-form-trust img {
    height: 25px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #terra-wrapper .price {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: 15px;
    }

    #terra-wrapper .price .al-cost {
        font-size: 22px;
    }
}