/* Custom Door Page Styling */
.custom-door-intro {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.door-heading {
    color: #2c3e50; /* Dark slate */
    margin-bottom: 15px;
    text-align: center; /* Centers the text */
}
.door-subhead {
    font-size: 1.2em;
    color: #e74c3c; /* Red text to grab attention */
    margin-bottom: 20px;
}

/* Call-out box for the steps */
.door-how-it-works {
    background-color: #f8f9fa; /* Light gray background */
    border-left: 5px solid #34495e; /* Dark slate left border */
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.door-how-it-works h3 {
    margin-top: 0;
    color: #2c3e50;
}

.door-how-it-works li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.door-cta-text {
    font-size: 1.1em;
    text-align: center;
    font-weight: bold;
    color: #333;
    background-color: #fff3cd; /* Subtle yellow highlight */
    padding: 10px;
    border-radius: 4px;
}

/* Make the Contact Form 7 Button Pop */
.custom-door-intro + .wpcf7 .wpcf7-submit {
    background-color: #e74c3c !important; /* Bold red button */
    color: #ffffff !important;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 1.2em;
}

.custom-door-intro + .wpcf7 .wpcf7-submit:hover {
    background-color: #c0392b !important; /* Darker red on hover */
}

/* Category Page Banner Styling */
.custom-door-banner {
    background-color: #f8f9fa; /* Light gray background */
    border: 2px dashed #34495e; /* Rugged dashed border */
    padding: 25px;
    text-align: center;
    margin-bottom: 35px; /* Adds space before your product grid starts */
    border-radius: 5px;
}

.custom-door-banner h3 {
    color: #e74c3c; /* Red accent to catch the eye */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.custom-door-banner p {
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.custom-door-btn {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.custom-door-btn:hover {
    background-color: #c0392b;
}