.hw-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    margin-top: 2em;
}
.hw-hub-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8em;
    box-shadow: 0 4px 16px rgba(165, 131, 80, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none !important;
    color: var(--primary);
}
.hw-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(165, 131, 80, 0.12);
    border-color: #d0a679;
    text-decoration: none !important;
}
.hw-hub-icon {
    font-size: 2em;
    margin-bottom: 0.5em;
}
.hw-hub-title {
    font-size: 1.25em;
    font-weight: 700;
    margin: 0 0 0.4em 0;
}
.hw-hub-desc {
    font-size: 0.95em;
    color: #7a6c60;
    line-height: 1.5;
    margin: 0 0 1.2em 0;
    flex-grow: 1;
}
.hw-hub-link {
    font-size: 0.9em;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.hw-hub-link::after {
    content: "→";
    transition: transform 0.2s ease;
}
.hw-hub-card:hover .hw-hub-link::after {
    transform: translateX(4px);
}
.hw-product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-top: 2em;
}
.hw-product-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(165, 131, 80, 0.08);
}
.hw-product-img-wrapper {
    flex: 0 0 250px;
    background: #fffaf4;
    padding: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}
.hw-product-img-wrapper img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hw-product-card:hover .hw-product-img-wrapper img {
    transform: scale(1.05);
}
.hw-product-content {
    padding: 1.5em 2em;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.hw-product-badge {
    align-self: flex-start;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent);
    color: #fff;
    padding: 0.4em 0.8em;
    border-radius: 4px;
    margin-bottom: 1em;
    font-weight: 700;
}
.hw-product-title {
    font-size: 1.3em;
    margin: 0 0 0.5em 0;
    line-height: 1.2;
}
.hw-product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
    font-size: 0.9em;
    color: #7a6c60;
}
.hw-product-specs li {
    margin-bottom: 0.4em;
    position: relative;
    padding-left: 1.2em;
}
.hw-product-specs li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.hw-product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px dashed var(--border);
    padding-top: 1.2em;
}
.hw-merchant-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.7em 1.5em;
    border-radius: 999px;
    text-decoration: none!important;
    font-weight: 600;
    font-size: 0.95em;
    transition: background 0.2s, transform 0.2s;
}
.hw-merchant-btn:hover {
    background: #503d38;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.hw-price-hint {
    color: #8a7461;
    font-size: 0.9em;
}

.hw-transparency {
    margin-top: 1.5em;
    padding: 0.8em;
    border-radius: 4px;
    background: rgba(246, 242, 234, 0.5);
    border: 1px solid var(--border);
}

.hw-see-also {
    margin-top: 3em;
    padding: 1.5em 1.8em;
    background: #fffdf8;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.hw-see-also-title {
    margin-top: 0;
    font-size: 1.1em;
    color: var(--primary);
}

.hw-see-also-desc {
    margin-bottom: 0;
    color: #7a6c60;
    font-size: 0.95em;
    line-height: 1.5;
}

.hw-see-also-link {
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    margin-top: 0.5em;
}

.hw-cta-section {
    margin-top: 4.5em;
    text-align: center;
}

.hw-cta-section--bordered {
    margin-top: 4em;
    padding-top: 2em;
    border-top: 1px solid var(--border);
    text-align: center;
}

.hw-no-decor {
    text-decoration: none !important;
}

.hw-constrained-text {
    max-width: 700px;
    margin: 0.5em auto 1.5em;
    color: #7a6c60;
}

.hw-intro-constrained {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5em;
}

@media (max-width: 768px) {
    .hw-hub-grid {
        grid-template-columns: 1fr;
    }
    .hw-product-card {
        flex-direction: column;
    }
    .hw-product-img-wrapper {
        flex: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .hw-product-footer {
        flex-direction: column;
        gap: 1em;
        align-items: stretch;
    }
    .hw-merchant-btn {
        text-align: center;
    }
}