Matsutake Table Lamp
/* ===== MATSUTAKE COLOR SYSTEM ===== Amber glass : #d4880a (warm amber deep) Amber light : #f0c060 (amber highlight) Walnut : #5a3420 (walnut wood body) Walnut mid : #7a4828 (waln ut mid) Gold plated : #c49038 (electroplated gold) Gold deep : #8a6018 (gold shadow) Mushroom : #f7f0dc (card surface — warm ivory) Cap cream : #faf4e0 (background tint) Border : #e8d498 (warm amber border) Umber : #2a1c08 (body text) Muted amber : #8a6820 (secondary text) ====================================== */ * { box-sizing: border-box; margin: 0; padding: 0; } body { background: #fff; padding: 2rem; } :root { --amber: #d4880a; --amber-light: #f0c060; --walnut: #5a3420; --walnut-mid: #7a4828; --gold: #c49038; --gold-deep: #8a6018; --mushroom: #f7f0dc; --cream: #faf4e0; --border: #e8d498; --umber: #2a1c08; --muted: #8a6820; } .vk-wrap { font-family: 'DM Sans', sans-serif; color: var(--umber); max-width: 680px; margin: 0; padding: 0; } .vk-divider { height: 1px; background: var(--border); margin: 1.75rem 0; } .vk-headline { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--umber); line-height: 1.4; margin-bottom: .75rem; letter-spacing: -.01em; } .vk-headline em { font-style: italic; color: var(--amber); } .vk-intro { font-size: 15px; color: #4a3010; line-height: 1.9; margin-bottom: 1rem; } .vk-section-label { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .7rem; } /* Video */ .vk-video-wrap { width: 100%; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: var(--mushroom); margin-bottom: .5rem; } .vk-video-wrap iframe { display: block; width: 100%; height: 100%; border: 0; } .vk-video-caption { font-size: 11px; color: var(--amber); text-align: center; margin-bottom: .75rem; letter-spacing: .05em; font-style: italic; } /* Features */ .vk-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1.25rem; } .vk-feat { background: var(--mushroom); border-radius: 6px; padding: .85rem; border: 1px solid var(--border); } .vk-feat-icon { width: 28px; height: 28px; border-radius: 4px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: .6rem; border: 1px solid var(--border); } .vk-feat h4 { font-size: 12.5px; font-weight: 500; color: var(--umber); margin-bottom: .25rem; } .vk-feat p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; } /* Shade options — 2 glass colors with glow preview */ .vk-shade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.25rem; } .vk-shade-card { background: var(--mushroom); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; } .vk-shade-preview { height: 56px; width: 100%; } .vk-shade-preview.amber { background: radial-gradient(ellipse at 50% 100%, #ffd488 0%, #e8a030 35%, #b87010 65%, #6a3808 100%); } .vk-shade-preview.white { background: radial-gradient(ellipse at 50% 100%, #ffffff 0%, #f0ece4 40%, #d8d0c0 70%, #b0a898 100%); } .vk-shade-body { padding: .75rem 1rem; } .vk-shade-name { font-family: 'DM Serif Display', serif; font-size: 15px; color: var(--umber); font-style: italic; margin-bottom: 2px; } .vk-shade-desc { font-size: 11.5px; color: var(--muted); } /* Body finish picker */ .vk-picker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.25rem; } .vk-picker { background: var(--mushroom); border: 1px solid var(--border); border-radius: 6px; padding: .9rem 1rem; } .vk-picker-label { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; } .vk-picker-options { display: flex; flex-direction: column; gap: .45rem; } .vk-picker-opt { display: flex; align-items: center; gap: .55rem; } .vk-picker-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,.08); } .vk-picker-name { font-size: 13px; color: var(--umber); font-weight: 500; } .vk-picker-type { font-size: 11px; color: var(--muted); margin-left: 3px; } /* Finish note */ .vk-finish-note { font-size: 12.5px; color: var(--muted); line-height: 1.65; padding: .75rem 1rem; background: var(--cream); border-radius: 6px; border: 1px solid var(--border); margin-bottom: 1.25rem; } /* Size card */ .vk-size { background: var(--mushroom); border: 1px solid var(--border); border-radius: 6px; padding: 1rem; margin-bottom: .75rem; display: flex; gap: 1rem; align-items: flex-start; } .vk-size-img a { display: block; } .vk-size-img img { width: 120px; height: auto; border-radius: 4px; border: 1px solid var(--border); display: block; } .vk-size-img-hint { font-size: 10px; color: var(--amber); text-align: center; margin-top: 3px; } .vk-size-info { flex: 1; } .vk-size-tag { display: inline-block; background: var(--gold-deep); color: var(--mushroom); font-size: 10px; padding: 2px 10px; border-radius: 10px; font-weight: 500; margin-bottom: .4rem; } .vk-size-name { font-size: 14.5px; font-weight: 500; color: var(--umber); margin-bottom: .2rem; } .vk-size-detail { font-size: 12.5px; color: var(--muted); line-height: 1.65; } /* Notice */ .vk-notice { border-left: 2px solid var(--amber); background: var(--mushroom); border-radius: 0 6px 6px 0; padding: .88rem 1rem; margin-bottom: .75rem; } .vk-notice h5 { font-size: 13px; font-weight: 500; color: var(--gold-deep); margin-bottom: .3rem; } .vk-notice p { font-size: 13px; color: #4a3010; line-height: 1.65; margin: 0; } /* Spec table */ .vk-spec-table { width: 100%; border-collapse: collapse; } .vk-spec-table tr { border-bottom: 1px solid var(--cream); } .vk-spec-table tr:last-child { border-bottom: none; } .vk-spec-table td { padding: 9px 0; font-size: 14px; vertical-align: top; } .vk-spec-table td:first-child { color: var(--muted); width: 42%; padding-right: 1rem; } /* Downloads */ .vk-dl { display: flex; gap: 8px; flex-wrap: wrap; } .vk-dl-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gold-deep); border: 1px solid var(--border); padding: 7px 14px; border-radius: 5px; text-decoration: none; background: var(--mushroom); } .vk-dl-btn:hover { background: var(--cream); } details summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: .5rem; } @media (max-width: 520px) { .vk-features { grid-template-columns: 1fr 1fr; } .vk-shade-grid { grid-template-columns: 1fr; } .vk-picker-grid { grid-template-columns: 1fr; } .vk-size { flex-direction: column; } .vk-size-img img { width: 100%; } } Nature distilled into warm amber light. The Matsutake Table Lamp takes its form from the elegant, iconic Matsutake mushroom — a gracefully curved base supporting a textured mushroom-cap glass shade that casts a warm, ambient glow. Organic and modern at once, it brings a quiet natural beauty to any bedside table, desk, or reading nook. See It In Action A touch of organic elegance Features Mushroom-Cap Shade Textured glass cap inspired by the Matsutake mushroom — warm diffused ambient glow. Metal, Wood & Glass Premium materials combination — organic warmth of wood, refined metal base, glass shade. Plug-In Ready 59.1" cord with inline on/off switch — no wiring, just plug in. Glass Shade — Two Colors Amber Warm golden glow · cozy & intimate White Soft diffused light · clean & bright Body Finish — Four Options Painted Finishes Walnut Color Black Electroplated Finishes Nickel Gold Walnut Color & Black are high-quality painted finishes. Nickel & Gold are electroplated metallic finishes. Each body finish can be paired with either the Amber or White glass shade. Size 🔍 Enlarge One Size ∅12.6" × H16.9" Weight: 5kg, G9 bulbs x 3 Pieces Dia 32 cm × H 43 cmBase: Dia 15 cm × H 2.5 cmCord: 59.1" with inline switch Plug-in — no wiring required The Matsutake Table Lamp is plug-in with a 59.1" (150 cm) cord and an inline on/off push button switch. Simply place and plug into a standard wall outlet. Specifications Materials Metal · Wood · Glass Light source G9 base · LED or Edison (not included) Voltage AC 110–240V Power Plug-in · 59.1" cord with inline on/off switch Mounting Table lamp · freestanding Certification North America · EU · AU · Saudi Arabia Body finishes Walnut Color · Black (painted) · Nickel · Gold (electroplated) Shade finishes Amber glass · White glass Downloads Spec Sheet Installation Guide Frequently Asked Questions What bulb does it use? E26 (US/CA) or E27 (EU/AU) base. A warm LED globe (2700–3000K) is recommended. Bulbs not included. Is this hardwired or plug-in? Plug-in. 59.1" cord with inline on/off push button switch — just plug into a standard wall outlet, no wiring needed. What body finishes are available? Four options: Walnut Color and Black are painted finishes. Nickel and Gold are electroplated metallic finishes. Each can be paired with Amber or White glass shade. Which shade color should I choose? Amber glass emits a warm golden glow — ideal for cozy bedside or reading lighting. White glass gives softer, more diffused light suited for workspaces or brighter ambient needs.
More you might like
Related
Matsutake Table Lamp
Related
Matsutake Table Lamp
Related
Matsutake Mushroom Table Lamp
Related