.contact-details h2 {
    margin-top: 0;
}

.opening-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}


@media(min-width: 769px) {

    /** home banner ***/
    #home-banner {
        position: relative;
        overflow: hidden;
    }

    #home-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url(/wp-content/uploads/2026/07/home-new-banner-1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: scale(1);
        animation: heroZoom 5s ease forwards;
        z-index: 0;
    }

    #home-banner>* {
        position: relative;
        z-index: 1;
    }

    @keyframes heroZoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.07);
        }
    }

    /*Designer Eyewear  Section */

    .eyewear-text-sec {
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.5) 25%,
                rgba(0, 0, 0, 0.15) 60%,
                rgba(0, 0, 0, 0) 100%);
    }

    .designer-eyewear-row {
        position: relative;
        overflow: hidden;
    }

    .designer-eyewear-box .eyewear-text-sec .eyewear-desc {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease;
    }

    .designer-eyewear-box:hover .eyewear-text-sec .eyewear-desc {
        max-height: 200px;
        opacity: 1;
        transition: max-height 0.6s ease, opacity 0.6s ease 0.1s;
    }

    .designer-eyewear-box .eyewear-text-sec {
        padding-bottom: 32px;
    }
}

/****Contact Form*******/
.contact-form p.gform_description {
    margin: 0 0 24px 0;
}

.contact-form input,
.contact-form textarea {
    height: 48px;
    padding: 13px 0px !important;
    font-size: 16px !important;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    border-radius: 0px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #1f1f1f;
}

.gform_wrapper input:focus::placeholder,
.gform_wrapper textarea:focus::placeholder {
    opacity: 0.8 !important;
}

.contact-form .msg-field .ginput_container_textarea {
    height: 52px;
    resize: vertical;
    overflow: auto;
    display: block;
}

.contact-form .msg-field textarea {
    height: 100% !important;
    display: block;
}

.contact-form .gform_button {
    width: 100% !important;
    cursor: pointer;
    font-size: 14px !important;
    line-height: 1 !important;
    margin: 26px auto 4px 0 !important;
    height: 40px;
    background: transparent !important;
    color: #1F1F1F !important;
}

.contact-form .gform_button:hover {
    background: #234965 !important;
    color: #ffffff !important;
}

.contact-form .gform_button:focus,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 0 !important;
}

.contact-form .gform_validation_errors {
    display: none
}

.contact-form .gravity-theme .gform-body .validation_message {
    background: transparent;
    border: none;
    padding: 8px 0 0 0;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    margin: 0;
    color: #790000;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border: none !important;
    border-bottom: 1px solid #790000 !important;
}

.gform_confirmation_message {
    background: #2C5655;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
}

.gform_ajax_spinner {
    position: absolute;
    left: 50%;
    bottom: -30px;
}

.gform_wrapper.gravity-theme .gform_footer {
    padding: 0 !important;
    flex-direction: column;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-half {
    grid-column: span 12 !important;
}

.contact-form .charleft {
    display: none;
}

@media(max-width: 768px) {
    .eyewear-desc {
        display: none;
    }

    .brands-carousel-sec {
        background: #3F4B54;
    }

    .brand-logos-row,
    .designer-eyewear-row {
        display: flex;
        overflow-x: auto !important;
        scrollbar-width: none !important
    }

    .designer-eyewear-row .designer-eyewear-box {
        min-width: 302px;
    }

    .brand-logos-row .brand-logo {
        min-width: 130px;
    }

    .service-tile:hover {
        background: #F4F6F9 !important;
    }

}