@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --acc: #FF7400;
    --acc-light: #fff0e6;
    --text: #59524d;
    --text-light: #a8a29c;
    --bg: #faf5f0;
    --border: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
}

.wrap {
    padding: 2rem 1.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ─── Section label ───────────────────────────────────────── */
.section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section {
    margin-bottom: 3rem;
}

.divider {
    border: none;
    border-top: 0.5px solid var(--border);
    margin: 0 0 2.5rem;
}

/* ─── Kickstarter button ──────────────────────────────────── */
.kick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acc);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
    transition: opacity 0.2s;
}

.kick-btn:hover {
    opacity: 0.85;
}

/* ─── Product cards ───────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.prod-card {
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.prod-img {
    background: #f0ece6;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prod-img span {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prod-body {
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-name {
    font-size: 17px;
    font-weight: 500;
    color: #2a2420;
    margin-bottom: 4px;
    font-style: italic;
    letter-spacing: -0.01em;
}

.prod-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.prod-size {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.prod-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--acc);
    margin-top: auto;
}

.prod-price span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

/* ─── Bundle cards ────────────────────────────────────────── */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.bundle-card {
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.bundle-tag {
    display: inline-block;
    background: var(--acc-light);
    color: var(--acc);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

.bundle-tag.proto {
    background: #f0ece6;
    color: #9a897e;
}

.bundle-img {
    background: #f5f2ed;
    border-radius: 8px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.bundle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bundle-img span {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bundle-name {
    font-size: 15px;
    font-weight: 500;
    color: #2a2420;
    margin-bottom: 4px;
    font-style: italic;
}

.bundle-includes {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.bundle-price {
    font-size: 17px;
    font-weight: 500;
    color: var(--acc);
    margin-top: auto;
}

.bundle-price span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

.bundle-save {
    font-size: 11px;
    color: #3a9e5f;
    font-weight: 500;
    margin-top: 3px;
}