/* Responsive  image for the SHELF photo - center crops on screens smaller than the image */

.top-banner .tozzi_one {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.top-banner .watch_img {
    width: 100%;
    max-width: 1200px; /* Full image width */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile: Show center portion only */
@media (max-width: 767px) {
    .top-banner .tozzi_one {
        height: 300px; /* Adjust this height as needed */
        overflow: hidden;
    }
    
    .top-banner .watch_img {
        width: auto;
        height: 100%;
        max-width: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablet: Show more of the image */
@media (min-width: 768px) and (max-width: 991px) {
    .top-banner .tozzi_one {
        height: 400px;
        overflow: hidden;
    }
    
    .top-banner .watch_img {
        width: auto;
        height: 100%;
        max-width: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Desktop: Show full image */
@media (min-width: 992px) {
    .top-banner .watch_img {
        width: 100%;
        max-width: 1200px;
        height: auto;
    }
}

/* Improve vertical alignment between the text and icons - either from Font Awesome or Line Icons --used  in the left-right content section */

.left-right-contents .media {
    display: flex;
    align-items: center;
}

/*  Changed "back to top" rocket icon with FOnt Awesome arrow - updating CSS for more polished appearance */

.back_to_top {
    font-size: 40px;
    color: #ff7800; /* Your orange color */
    transition: color 0.3s ease;
}

    .back_to_top:hover {
        color: #ff6622; /* Brighter orange on hover */
    }

/* Order Contact Form */

.contact-content {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font: 600 36px/1.2 "Poppins", sans-serif;
    color: #374048;
    margin: 0 0 20px;
    text-align: center;
}

.contact-content > p {
    font: 300 16px/24px "Poppins", sans-serif;
    color: #82898f;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font: 500 14px/1 "Poppins", sans-serif;
    color: #374048;
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font: 300 14px/1.5 "Poppins", sans-serif;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

    .contact-form .form-control:focus {
        outline: none;
        border-color: #ff7800;
    }

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    font: 300 14px/1 "Poppins", sans-serif;
    color: #374048;
    cursor: pointer;
    margin-bottom: 0;
}

    .radio-label input[type="radio"] {
        margin-right: 8px;
        cursor: pointer;
    }

.char-count {
    display: block;
    font: 300 12px/1 "Poppins", sans-serif;
    color: #82898f;
    margin-top: 5px;
    text-align: right;
}

.contact-form .btn-warning {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .contact-content {
        padding: 30px 20px;
    }

        .contact-content h2 {
            font-size: 28px;
        }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}

/* Thank you pop up after formspark returns */
.thank-you-content {
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

    .thank-you-content h2 {
        font: 600 36px/1.2 "Poppins", sans-serif;
        color: #374048;
        margin: 0 0 20px;
    }

    .thank-you-content p {
        font: 300 18px/1.5 "Poppins", sans-serif;
        color: #82898f;
        margin: 0;
    }

@media (max-width: 767px) {
    .thank-you-content {
        padding: 40px 30px;
    }

        .thank-you-content h2 {
            font-size: 28px;
        }
}
