.home .container.py-5.new-items {
    margin-top: 120px !important;
}

.home .col-6.block.text-block h2 {
    margin-bottom: 10px;
}

/* --- Main Newsletter Container --- */
/* This targets the div that holds all newsletter content */
.CTA-block.emailer > div.w-100 {
    background-image: none !important; /* Explicitly remove any background image */
    background-color: #6a0000; /* Deep maroon/dark red */
    
    /* ADJUSTED: Reduced vertical padding for a more compact look on desktop */
    padding: 60px 20px; /* Was 80px 20px. You can try 70px if 60px is too little. */
    
    text-align: center;
    color: #e0e0e0;
}

/* --- Newsletter Heading (The 'p' tag) --- */
.CTA-block.emailer > div.w-100 p {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* The empty <h2> tag (for description) */
/* IMPORTANT: If you don't put content here, consider removing the <h2> tag from your HTML.
   It currently takes up vertical space due to its default browser margins. */
.CTA-block.emailer > div.w-100 h2 {
    font-size: 1.1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 30px; /* This margin will still apply if h2 is empty, push it down if needed. */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Newsletter Form --- */
.CTA-block.emailer > div.w-100 .cta-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    /* ADJUSTED: Reduced max-width for a slightly more contained form on desktop */
    max-width: 500px; /* Was 600px. Makes the input/button section a bit narrower. */
    
    margin: 0 auto;
    gap: 15px;
}

/* --- Email Input Field --- */
.CTA-block.emailer .cta-form .email-field input.form-control[type="email"] {
    flex-grow: 1;
    padding: 14px 20px;
    border: 1px solid #555555;
    border-radius: 8px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 1.1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.CTA-block.emailer .cta-form .email-field input.form-control[type="email"]::placeholder {
    color: #888888;
}

.CTA-block.emailer .cta-form .email-field input.form-control[type="email"]:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

/* --- Submit Button --- */
.CTA-block.emailer .cta-form .submit-button button.btn.btn-outline-light {
    padding: 14px 30px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.CTA-block.emailer .cta-form .submit-button button.btn.btn-outline-light:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    border-color: transparent;
}

/* --- Cloudflare Turnstile adjustments --- */
.CTA-block.emailer .cta-form .cf-turnstile {
    margin: 10px auto;
}


/* --- Responsive Adjustments for Mobile (remains the same as last iteration) --- */
@media (max-width: 768px) {
    .CTA-block.emailer > div.w-100 {
        padding: 35px 15px; /* Reduced vertical padding for mobile */
    }

    .CTA-block.emailer > div.w-100 p { /* Heading */
        font-size: 1.8em;
        line-height: 1.3;
    }

    .CTA-block.emailer > div.w-100 h2 { /* Description */
        font-size: 1em;
        margin-bottom: 20px;
    }

    .CTA-block.emailer .cta-form {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        width: calc(100% - 30px);
        padding: 0 15px;
        box-sizing: border-box;
    }

    .CTA-block.emailer .cta-form .email-field,
    .CTA-block.emailer .cta-form .submit-button,
    .CTA-block.emailer .cta-form .cf-turnstile {
        width: 100%;
        max-width: none;
    }

    .CTA-block.emailer .cta-form .email-field input.form-control[type="email"],
    .CTA-block.emailer .cta-form .submit-button button.btn.btn-outline-light {
        width: 100%;
    }
}

.home a.btn.btn-outline-dark {
    background-color: white;
}

.shop .row.mx-auto.mb-2.item-sorting {
    margin-top: 50px !important;
}