@charset "utf-8";
/* CSS Document */

/* ============== NON-CRITICAL STYLES ============== */

/* Expanded card */
.brand[open] {
    width: 420px;
    max-width: 420px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.brand .content {
    padding: 0 12px 12px;
    font-size: 0.95em;
    line-height: 1.4;
    color: #333;
}

.brand-link {
    margin: 25px 0 10px;
    text-align: center;
}

.brand-link a {
    display: inline-block;
    background-color: #1e88e5;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    min-width: 180px;
    border: 2px solid transparent;
}

.brand-link a:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30,136,229,0.3);
    border-color: #1e88e5;
}

.brand-link a:active {
    transform: translateY(-1px);
}

/* Centering container */
.brand-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Retailer links */
.retailers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    clear: both;
}

.link {
    background-color: #f8bd19;
    color: #fff;
    border-radius: 9999px;
    padding: 12px 24px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 110px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.link:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Walmart special styling */
.wrt.link, .wrt.link a, a.wl {
    background-color: #0071CE !important;
    color: #ffffff !important;
    border: 2px solid #0071CE;
}
.wrt.link:hover, .wrt.link a:hover, a.wl:hover {
    background-color: #004B9F !important;
    color: #ffffff !important;
}

/* Advance Auto Parts - Official brand red */
.adv.link,
.adv.link a {
    background-color: #B6121B !important;   /* Primary Advance Auto red */
    color: #ffffff !important;
    border: 2px solid #B6121B;
}

.adv.link:hover,
.adv.link a:hover {
    background-color: #8F0D14 !important;   /* Darker red for hover */
    color: #ffffff !important;
    border-color: #8F0D14;
}

/* Misc */
section > b {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.disclosure {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 8px;
    font-style: italic;
}

/* Container for the form */
.comments {
    max-width: 500px; /* Optional: sets a nice width for the form */
    margin: 20px auto;
}

#contactForm {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    gap: 15px;              /* Adds spacing between elements */
}

/* Styling for inputs and textarea */
#contactForm input[type="text"],
#contactForm textarea {
    width: 100%;            /* Makes them fill the container width */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-family: inherit;
}

/* Responsive Textarea */
#contactForm textarea {
    min-height: 120px;      /* Starting height */
    resize: vertical;       /* Allows user to resize height only */
}

/* Extra height for select to make it feel balanced */
#contactForm select {
    height: 48px;                 /* Matches typical input height */
    cursor: pointer;
}

/* Button styling */
#contactForm button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start; /* Keeps button from stretching full width */
}

#contactForm button:hover {
    background-color: #0056b3;
}

/* Response message spacing */
#responseMessage {
    margin-top: 15px;
    font-weight: bold;
}

/* Extra small mobile tweaks */
@media only screen and (max-width: 500px) {
    section { width: 93.5%; }
}

.pipe-bullets {
    white-space: pre-wrap;
    padding-left: 24px;
    position: relative;
}

.pipe-bullets::before {
    content: "";
}

.pipe-bullets {
    display: block;
    line-height: 1.6;
}

.pipe-bullets span {
    display: block;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
}

.pipe-bullets span::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.3em;
    line-height: 1;
}
