@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Unbounded:wght@700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #490A3D;
    font-family: 'Russo One', sans-serif;
    min-height: 100vh;
    transition: background 0.5s ease;
    padding: 24px 12px;
}

.outer {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}

/* Quote box */
.quotebox {
    background: #fff;
    border: 1px solid #222;
    border-radius: 6px;
    margin-bottom: 12px;
}

blockquote {
    border-left: 13px solid #490A3D;
    margin: 24px 10px;
    padding: 10px 24px;
    cursor: pointer;
}

.quotemark {
    font-size: 32px;
    line-height: 1;
    opacity: 0.25;
    display: block;
    margin-bottom: 4px;
}

.quotemarkclose {
    font-size: 32px;
    line-height: 1;
    opacity: 0.25;
    display: block;
    text-align: right;
    margin-top: 4px;
}

#quotetext {
    font-size: 22px;
    line-height: 1.35;
    color: #222;
    display: block;
}

#quotesource {
    font-size: 16px;
    text-align: right;
    color: #490A3D;
    display: block;
    margin-top: 12px;
    transition: color 0.5s;
}

/* Product list */
.products {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.product {
    background: #1A3844;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 14px;
    align-items: center;
}

.product:last-child { border-bottom: none; }

.product-logo {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-logo.dark { background: #0d1b2a; }

.product-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.product-desc {
    font-size: 10px;
    opacity: 0.45;
    font-family: monospace;
    color: #fff;
}

.product-links {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.product-link {
    font-size: 10px;
    font-family: monospace;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 3px;
    transition: background 0.2s;
}

.product-link:hover { background: rgba(255,255,255,0.2); }

/* Tablet and up — more breathing room */
@media (min-width: 480px) {
    body { padding: 40px 20px; }
    blockquote { margin: 30px 13px; padding: 13px 30px; }
    #quotetext { font-size: 26px; }
    #quotesource { font-size: 18px; }
    .product { padding: 14px 16px; }
    .product-logo { width: 90px; height: 68px; }
    .product { grid-template-columns: 90px 1fr; }
    .product-name { font-size: 16px; }
    .product-desc { font-size: 11px; }
    .product-link { font-size: 11px; }
}
