@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;
}

/* 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;
}

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

