/* === 全域與變數設定 === */ :root { –primary-gold: #d4af37; –bg-dark: #1a1a1a; –text-dark: #333; –warning-font-size: 1.2rem; –sidebar-width: 260px; } * { box-sizing: border-box; } .wtsh-body { font-family: ‘Noto Sans TC’, ‘Helvetica Neue’, Arial, sans-serif; color: var(–text-dark); margin: 0; padding: 0; padding-bottom: 80px; background: #fdfdfd; } /* === 最頂部免責聲明列 (Top Notice) === */ .wtsh-top-notice { background: #0a0a0a; color: var(–primary-gold); text-align: center; padding: 10px 15px; font-size: 0.9em; letter-spacing: 1.5px; font-weight: bold; border-bottom: 1px solid #222; } /* === 年齡確認彈窗 (Age Gate) === */ #wtsh-age-gate { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(15, 15, 15, 0.98); z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; } .wtsh-age-logo { max-width: 150px; margin-bottom: 25px; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); } #wtsh-age-gate h2 { font-size: 2em; margin-bottom: 10px; color: var(–primary-gold); letter-spacing: 2px; } #wtsh-age-gate p { margin-bottom: 30px; color: #aaa; } .wtsh-btn-group button { background: transparent; border: 2px solid var(–primary-gold); color: var(–primary-gold); padding: 12px 30px; margin: 0 10px; font-size: 1.1em; cursor: pointer; transition: all 0.3s; } .wtsh-btn-group button:hover { background: var(–primary-gold); color: #000; } /* === 圖片放大燈箱 (Lightbox) === */ #wtsh-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.85); z-index: 99990; align-items: center; justify-content: center; } #wtsh-lightbox img { max-width: 90%; max-height: 90%; box-shadow: 0 0 20px rgba(255,255,255,0.2); } .wtsh-close-btn { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; } /* === 頂部社群導覽列 === */ .wtsh-social-bar { background: #000; color: #fff; text-align: right; padding: 8px 30px; display: flex; justify-content: flex-end; align-items: center; gap: 15px; } .wtsh-social-bar a { color: #fff; display: flex; align-items: center; justify-content: center; transition: 0.3s; opacity: 0.8; } .wtsh-social-bar a:hover { opacity: 1; color: var(–primary-gold); transform: translateY(-2px); } .wtsh-social-bar svg { width: 20px; height: 20px; fill: currentColor; } /* === 頂部主導航 (Top Nav) 包含 4 個分類 === */ .wtsh-topbar { color: #fff; display: flex; justify-content: center; padding: 20px 0; border-bottom: 3px solid var(–primary-gold); position: sticky; top: 0; z-index: 1000; flex-wrap: wrap; background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url(‘https://images.unsplash.com/photo-1527281400683-1aae777175f8?q=80&w=1200&auto=format&fit=crop’); background-size: cover; background-position: center; } .wtsh-top-btn { background: transparent; border: none; color: #fff; font-size: 1.1em; padding: 10px 20px; margin: 0 5px; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); } .wtsh-top-btn svg { width: 30px; height: 30px; fill: var(–primary-gold); filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5)); } .wtsh-top-btn:hover, .wtsh-top-btn.active { opacity: 1; color: var(–primary-gold); } /* === 雙欄排版 === */ .wtsh-layout { display: flex; max-width: 1300px; margin: 40px auto; min-height: 600px; padding: 0 20px; gap: 30px; } /* === 左側邊欄 === */ .wtsh-sidebar { width: var(–sidebar-width); flex-shrink: 0; } .wtsh-sidebar-menu { display: none; } .wtsh-sidebar-menu.active { display: block; animation: fadeIn 0.4s; } .wtsh-side-title { font-size: 1.3em; color: #111; border-bottom: 2px solid #eaeaea; padding-bottom: 10px; margin-bottom: 15px; font-weight: bold; } .wtsh-side-btn { display: block; width: 100%; text-align: left; background: none; border: none; padding: 12px 15px; font-size: 1.05em; color: #555; cursor: pointer; transition: 0.2s; border-left: 3px solid transparent; margin-bottom: 5px; } .wtsh-side-btn:hover { background: #f5f5f5; color: #111; } .wtsh-side-btn.active { border-left-color: var(–primary-gold); background: #fafafa; font-weight: bold; color: #000; } /* === 右側主內容區 === */ .wtsh-content-area { flex-grow: 1; } .wtsh-panel { display: none; animation: fadeIn 0.4s; } .wtsh-panel.active { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .wtsh-panel-title { font-size: 2em; margin-top: 0; margin-bottom: 25px; color: #222; } /* === 代理品牌介紹區塊 === */ .wtsh-brand-intro { display: flex; gap: 25px; align-items: center; background: #fff; padding: 25px; border: 1px solid #eaeaea; margin-bottom: 40px; border-left: 4px solid var(–primary-gold); border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); } .wtsh-brand-intro-img { width: 250px; flex-shrink: 0; cursor: zoom-in; } .wtsh-brand-intro-img img { width: 100%; height: auto; object-fit: contain; } .wtsh-brand-intro-text { flex-grow: 1; } .wtsh-brand-intro-text h3 { margin-top: 0; font-size: 1.4em; color: #111; margin-bottom: 10px; } .wtsh-brand-intro-text p { line-height: 1.8; color: #555; font-size: 1em; margin: 0; } /* === 網格與卡片設計 === */ .wtsh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; } .wtsh-card { border: 1px solid #eaeaea; padding: 15px; background: #fff; display: flex; flex-direction: column; transition: 0.3s; } .wtsh-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); border-color: var(–primary-gold); } .wtsh-img-box { width: 100%; height: 220px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; background: #fafafa; overflow: hidden; cursor: zoom-in; } .wtsh-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s; } .wtsh-card:hover .wtsh-img-box img { transform: scale(1.08); } .wtsh-card h3 { font-size: 1.05em; margin: 10px 0; color: #111; line-height: 1.3; } .wtsh-details { font-size: 0.85em; color: #555; margin-bottom: 10px; line-height: 1.5; font-weight: bold; } .wtsh-tasting { font-size: 0.8em; background: #f9f9f9; padding: 10px; border-left: 2px solid var(–primary-gold); color: #666; margin-bottom: 15px; flex-grow: 1; line-height: 1.5; } .wtsh-price { font-weight: bold; font-size: 1em; color: #111; border-top: 1px dashed #ddd; padding-top: 10px; } /* 合作夥伴卡片地圖按鈕樣式 */ .wtsh-map-link { display: inline-block; color: var(–primary-gold); text-decoration: none; font-weight: bold; border-bottom: 1px solid var(–primary-gold); padding-bottom: 2px; transition: 0.3s; } .wtsh-map-link:hover { color: #111; border-bottom-color: #111; } /* === RWD 響應式 === */ @media (max-width: 1024px) { .wtsh-layout { flex-direction: column; } .wtsh-sidebar { width: 100%; } .wtsh-side-btn { display: inline-block; width: auto; border-left: none; border-bottom: 3px solid transparent; } .wtsh-side-btn.active { border-left: none; border-bottom-color: var(–primary-gold); } .wtsh-brand-intro { flex-direction: column; text-align: center; } .wtsh-brand-intro-img { width: 100%; max-width: 300px; margin: 0 auto; } .wtsh-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .wtsh-grid { grid-template-columns: 1fr; } } /* === 底部 Footer === */ .wtsh-footer { background: #f5f5f5; padding: 40px 20px; text-align: center; border-top: 1px solid #ddd; margin-top: 40px; } .wtsh-footer p { margin: 5px 0; color: #444; font-size: 0.95em; } .wtsh-copyright { margin-top: 15px !important; font-size: 0.85em !important; color: #888 !important; } /* === 強制固定懸浮警語 === */ .wtsh-floating-warning { position: fixed !important; bottom: 0 !important; left: 0 !important; width: 100vw !important; background: #000; color: #fff; text-align: center; padding: 15px 10px; font-size: var(–warning-font-size); font-weight: bold; letter-spacing: 5px; z-index: 99995 !important; resize: vertical; overflow: hidden; min-height: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 0 -3px 15px rgba(0,0,0,0.5); } .wtsh-size-control { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; } .wtsh-size-control button { background: #333; color: #fff; border: 1px solid #555; cursor: pointer; padding: 2px 8px; } /* === 回到最頂端按鈕 === */ #wtsh-back-to-top { display: none; position: fixed; bottom: 90px; right: 30px; z-index: 99990; background-color: var(–primary-gold); color: #111; border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; } #wtsh-back-to-top.show { opacity: 1; visibility: visible; } #wtsh-back-to-top:hover { background-color: #111; color: var(–primary-gold); transform: translateY(-3px); } #wtsh-back-to-top svg { width: 24px; height: 24px; fill: currentColor; }
建議售價僅供參考,此網站不提供線上販售。

您是否已符合當地適酒年齡?

Are you of legal drinking age?

×Enlarged Image

團隊資訊

品牌 Logo

我們是沃塔希,致力於發掘世界各地最純粹的橡木桶靈魂。

以專業威士忌獨立裝瓶廠的角色,推出自有選桶品牌、提供客製化包桶服務。在精心挑選的酒窖裡,我們嚴格監測每桶酒的熟成狀態,只為等待風味完美的那一刻裝瓶。

團隊成員

林禹彤

林禹彤 (Lin Yu-tong)

創辦人 / CEO
創立 WATASHI WHISKY,致力於發掘純粹橡木桶靈魂,親自參與選桶與視覺設計。
Join Us

職缺招募中

品牌大使
尋找熱愛威士忌的你,一起將優質酒款推廣至全台灣。
Join Us

職缺招募中

行銷企劃專員
負責社群經營、品飲會活動規劃,打造獨一無二的品牌體驗。
Join Us

職缺招募中

營運助理
協助處理訂單、庫存管理及行政事務,是團隊中不可或缺的最強後盾。
Join Us

虛位以待

業務代表
拓展通路與合作夥伴。對威士忌產業充滿熱忱,歡迎加入!

2023 年度酒款

2023 經典單桶 #1

酒廠:TBD
歷史酒款風味筆記…
完售

2023 經典單桶 #2

酒廠:TBD
歷史酒款風味筆記…
完售

2023 經典單桶 #3

酒廠:TBD
歷史酒款風味筆記…
完售

2023 經典單桶 #4

酒廠:TBD
歷史酒款風味筆記…
完售

2023 經典單桶 #5

酒廠:TBD
歷史酒款風味筆記…
完售

2023 特別版 #6

酒廠:TBD
歷史酒款風味筆記…
完售

2023 特別版 #7

酒廠:TBD
歷史酒款風味筆記…
完售

2023 特別版 #8

酒廠:TBD
歷史酒款風味筆記…
完售

2023 特別版 #9

酒廠:TBD
歷史酒款風味筆記…
完售

2023 壓軸款 #10

酒廠:TBD
歷史酒款風味筆記…
完售

2024 年度酒款

酒款建置中

2025 年度酒款

酒款建置中

2026 年度酒款

酒款建置中

2027 年度酒款

酒款建置中

同名商品

WATASHI No.1

WATASHI No.001 Macallan 2008

桶型:1st Fill Oloroso Butt
濃度:57.2% ABV
品飲筆記:濃郁的酒漬葡萄乾、黑巧克力與肉桂香料。
NT$ 12,800
WATASHI No.2

WATASHI No.002 Bowmore 1997

桶型:Refill Bourbon
濃度:51.4% ABV
品飲筆記:清新的香草、海風與優雅的波本桶甜香交織。
NT$ 25,500
WATASHI No.3

WATASHI No.003 Bunnahabhain 2012

桶型:Peated “Mòine" Cask
濃度:55.3% ABV
品飲筆記:柔和的泥煤氣息,帶有海鹽焦糖與烤果仁的香氣。
NT$ 5,800
WATASHI No.4

WATASHI No.004 Longmorn 2005

桶型:Hogshead
濃度:54.6% ABV
品飲筆記:飽滿的麥芽甜味,夾帶成熟桃子與溫和的木質調。
NT$ 8,500
WATASHI No.5

WATASHI No.005 Clynelish 2010

桶型:Refill Barrel
濃度:53.8% ABV
品飲筆記:招牌的小山貓蠟質感,清脆的蘋果與花蜜香。
NT$ 6,200

Seven Catly Sins

Sloth

【怠惰 Sloth】Glenkinchie 14yo

桶型:Hogshead
濃度:54.2% ABV
品飲筆記:青草香氣,蜂蜜與柑橘皮,口感慵懶圓潤。
NT$ 4,500
Pride

【傲慢 Pride】Macallan 30yo

桶型:1st Fill Sherry
濃度:51.5% ABV
品飲筆記:黑巧克力與深色果乾,不可一世的雪茄盒。
NT$ 88,000
Wrath

【暴怒 Wrath】Laphroaig 9yo

桶型:Refill Bourbon
濃度:58.8% ABV
品飲筆記:強烈的泥煤爆發力,狂野的海水與碘味。
NT$ 3,800
Gluttony

【暴食 Gluttony】Mortlach 18yo

桶型:Sherry Puncheon
濃度:56.1% ABV
品飲筆記:肉脂感十足,濃郁的肉桂蘋果與太妃糖。
NT$ 8,200
Lust

【色慾 Lust】Springbank 24yo

桶型:Port Cask
濃度:52.3% ABV
品飲筆記:草莓果醬與黑櫻桃,性感的微煙燻尾韻。
NT$ 32,000

小黑貓OKANE的日本遊

Okane 1

Vol.1【赤富士的散步】
Chichibu 2016 7yo

桶型:Mizunara Cask
濃度:59.5% ABV
品飲筆記:伽羅香木、檀香與日式線香,彷彿在江戶街道漫步。
NT$ 22,500
Okane 2

Vol.2【靜岡茶園】
Shizuoka 2018 5yo

桶型:Ex-Bourbon
濃度:55.8% ABV
品飲筆記:柴燒窯的輕煙燻,伴隨清新綠茶與柑橘甜香。
NT$ 18,000
Okane 3

Vol.3【九州之森】
Kuju Distillery

桶型:Sherry Cask
濃度:58.1% ABV
品飲筆記:深色莓果與森林氣息,口感豐富具層次。
即將發行
Okane 4

Vol.4【雪中三郎丸】
Saburoumaru 2019

桶型:Wine Cask Finish
濃度:54.5% ABV
品飲筆記:強勁泥煤結合紅酒桶的單寧與莓果甜味。
即將發行
Okane 5

Vol.5【海風厚岸】
Akkeshi 2020

桶型:Mizunara Quarter
濃度:56.0% ABV
品飲筆記:海島泥煤與日本水楢木的完美結合,尾韻帶有昆布鮮味。
即將發行

Kizuna

Kizuna No.1

籌備中
敬請期待
TBD

Kizuna No.2

籌備中
敬請期待
TBD

Kizuna No.3

籌備中
敬請期待
TBD

Kizuna No.4

籌備中
敬請期待
TBD

Kizuna No.5

籌備中
敬請期待
TBD

The Single Cask

The Single Cask

關於 The Single Cask

來自英國的知名獨立裝瓶廠,致力於從蘇格蘭各大酒廠的酒窖中,挖掘出最卓越、最獨特且未經冷凝過濾的單一桶威士忌。我們很榮幸能將這份純粹引進台灣,與喜愛單桶威士忌的您分享。

Ben Nevis

TSC Ben Nevis 1996

桶型:Sherry Butt
濃度:53.4% ABV
品飲筆記:熱帶水果與百香果香氣,飽滿深邃的雪莉油脂。
NT$ 18,000
Balmenach

TSC Balmenach 2008

桶型:Hogshead
濃度:55.2% ABV
品飲筆記:濃郁肉類氣息與辛香料,老式斯貝賽硬派風格。
NT$ 5,200
Longmorn

TSC Longmorn 2002

桶型:Bourbon Barrel
濃度:51.8% ABV
品飲筆記:優雅的花果香與奶油太妃糖,口感絲滑。
NT$ 12,500
Glenburgie

TSC Glenburgie 2011

桶型:Hogshead
濃度:56.4% ABV
品飲筆記:清脆的紅蘋果與香草莢,酒體乾淨透亮。
即將發行
Caol Ila

TSC Caol Ila 2013

桶型:Refill Hogshead
濃度:54.9% ABV
品飲筆記:清爽的檸檬泥煤與海風鹹味。
即將發行

Integrity Malt

Integrity Malt

關於 Integrity Malt

堅守「誠信」與「真實」的選桶理念,Integrity Malt 專注於發掘那些被市場低估、卻擁有極高潛力的優質原酒。我們不盲從熱門酒廠,將最具性價比與風味深度的優質獨立裝瓶威士忌帶給每一位愛好者。

Integrity #01

籌備中
敬請期待
TBD

Integrity #02

籌備中
敬請期待
TBD

Integrity #03

籌備中
敬請期待
TBD

Integrity #04

籌備中
敬請期待
TBD

Integrity #05

籌備中
敬請期待
TBD

北部 合作夥伴

Partner

台北信義威士忌吧 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
19:00 – 02:00 (週一公休)
Partner

大安精緻酒水鋪 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
13:00 – 22:00
Partner

中山老派酒館 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
20:00 – 03:00

中部 合作夥伴

Partner

台中西屯威士忌專賣 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
14:00 – 23:00
Partner

勤美質感酒吧 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
19:00 – 02:00
Partner

南屯品飲會所 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
預約制

南部 合作夥伴

Partner

台南中西區老屋酒吧 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
20:00 – 02:00
Partner

高雄左營洋酒行 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
11:00 – 22:00
Partner

鼓山秘境酒館 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
19:00 – 03:00

東部 合作夥伴

Partner

花蓮市區品酒坊 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
15:00 – 23:00
Partner

台東海岸酒吧 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
18:00 – 01:00
Partner

宜蘭文青洋酒 (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
12:00 – 21:00

海外 合作夥伴

Partner

Tokyo Whisky Bar (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
18:00 – 03:00
Partner

Hong Kong Spirits (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
17:00 – 02:00
Partner

Singapore Malt Room (示範)

📍 地點:
Google Map 導航

🕒 營業時間:
16:00 – 01:00

沃塔希有限公司

統編:93746320

地址: 臺南市新市區港墘里光華街84巷12號4樓之3

禁 止 酒 駕 | 飲 酒 過 量 有 害 健 康
function switchMain(category) { document.querySelectorAll(‘.wtsh-top-btn’).forEach(btn => btn.classList.remove(‘active’)); document.getElementById(‘btn-main-‘ + category).classList.add(‘active’); document.querySelectorAll(‘.wtsh-sidebar-menu’).forEach(menu => menu.classList.remove(‘active’)); let activeSidebar = document.getElementById(‘side-‘ + category); activeSidebar.classList.add(‘active’); activeSidebar.querySelector(‘.wtsh-side-btn’).click(); } function switchPanel(panelId, btnElement) { let parentMenu = btnElement.closest(‘.wtsh-sidebar-menu’); parentMenu.querySelectorAll(‘.wtsh-side-btn’).forEach(btn => btn.classList.remove(‘active’)); btnElement.classList.add(‘active’); document.querySelectorAll(‘.wtsh-panel’).forEach(panel => panel.classList.remove(‘active’)); document.getElementById(panelId).classList.add(‘active’); } function showImage(imgSrc) { document.getElementById(‘wtsh-lightbox-img’).src = imgSrc; document.getElementById(‘wtsh-lightbox’).style.display = ‘flex’; } let currentWarningSize = 1.2; function adjustWarningSize(change) { currentWarningSize += change; if (currentWarningSize 2.5) currentWarningSize = 2.5; document.documentElement.style.setProperty(‘–warning-font-size’, currentWarningSize + ‘rem’); } window.onscroll = function() { let backToTopBtn = document.getElementById(“wtsh-back-to-top"); if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 300) { backToTopBtn.classList.add(“show"); } else { backToTopBtn.classList.remove(“show"); } }; function scrollToTop() { window.scrollTo({ top: 0, behavior: ‘smooth’ }); }