* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Noto Sans KR’, -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* 헤더 영역 */
.product-header {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
color: white;
padding: 60px 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.product-header::before {
content: «»;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { transform: rotate(0deg); }
50% { transform: rotate(180deg); }
}
.premium-badge {
display: inline-block;
background: linear-gradient(135deg, #FFD700, #FFA500);
color: #1a1a1a;
padding: 8px 20px;
border-radius: 20px;
font-weight: bold;
margin-bottom: 20px;
font-size: 14px;
letter-spacing: 2px;
}
.product-title {
font-size: 48px;
font-weight: 300;
margin-bottom: 15px;
letter-spacing: 3px;
position: relative;
z-index: 1;
}
.product-subtitle {
font-size: 20px;
opacity: 0.9;
font-weight: 300;
letter-spacing: 1px;
}
/* 핵심 특징 섹션 */
.key-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
padding: 60px 20px;
background: #f8f8f8;
}
.feature-card {
background: white;
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.feature-icon {
font-size: 48px;
margin-bottom: 20px;
}
.feature-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
color: #1a1a1a;
}
.feature-desc {
color: #666;
line-height: 1.8;
}
/* 스토리 섹션 */
.story-section {
padding: 80px 20px;
background: white;
}
.section-title {
font-size: 36px;
text-align: center;
margin-bottom: 50px;
color: #1a1a1a;
position: relative;
padding-bottom: 20px;
}
.section-title::after {
content: «»;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, #FFD700, #FFA500);
}
.story-content {
max-width: 800px;
margin: 0 auto;
font-size: 18px;
line-height: 2;
color: #555;
}
.highlight {
background: linear-gradient(180deg, transparent 60%, rgba(255,215,0,0.3) 60%);
padding: 0 4px;
font-weight: 500;
}
/* 제조 과정 */
.process-section {
background: #1a1a1a;
color: white;
padding: 80px 20px;
}
.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
max-width: 1000px;
margin: 0 auto;
}
.process-item {
text-align: center;
}
.process-number {
display: inline-block;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, #FFD700, #FFA500);
color: #1a1a1a;
font-weight: bold;
font-size: 24px;
margin-bottom: 20px;
}
.process-title {
font-size: 20px;
margin-bottom: 10px;
color: #FFD700;
}
.process-desc {
opacity: 0.9;
line-height: 1.8;
}
/* 테이스팅 노트 */
.tasting-section {
padding: 80px 20px;
background: white;
}
.tasting-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
max-width: 1000px;
margin: 50px auto;
}
.tasting-card {
padding: 40px;
border: 2px solid #f0f0f0;
border-radius: 20px;
transition: all 0.3s ease;
}
.tasting-card:hover {
border-color: #FFD700;
background: #fffef5;
}
.tasting-label {
font-size: 14px;
color: #999;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
}
.tasting-value {
font-size: 24px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 15px;
}
.tasting-detail {
color: #666;
line-height: 1.8;
}
/* 추천 섹션 */
.pairing-section {
background: #f8f8f8;
padding: 80px 20px;
}
.pairing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 50px auto;
}
.pairing-item {
background: white;
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.pairing-emoji {
font-size: 48px;
margin-bottom: 15px;
}
.pairing-name {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.pairing-desc {
color: #666;
font-size: 14px;
line-height: 1.6;
}
/* CTA 섹션 */
.cta-section {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
padding: 80px 20px;
text-align: center;
color: white;
}
.cta-title {
font-size: 36px;
margin-bottom: 20px;
font-weight: 300;
}
.cta-subtitle {
font-size: 18px;
opacity: 0.9;
margin-bottom: 40px;
}
.cta-button {
display: inline-block;
padding: 18px 50px;
background: linear-gradient(135deg, #FFD700, #FFA500);
color: #1a1a1a;
text-decoration: none;
border-radius: 50px;
font-size: 18px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}
/* 인증 마크 */
.certification {
text-align: center;
padding: 60px 20px;
background: white;
}
.cert-badges {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 30px;
}
.cert-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.cert-icon {
font-size: 48px;
color: #FFD700;
}
.cert-text {
font-size: 14px;
color: #666;
font-weight: 500;
}
/* 추가 정보 */
.info-box {
background: #fffef5;
border-left: 4px solid #FFD700;
padding: 20px;
margin: 30px 0;
border-radius: 8px;
}
.info-title {
font-weight: 600;
margin-bottom: 10px;
color: #1a1a1a;
}
.info-text {
color: #666;
line-height: 1.8;
}
@media (max-width: 768px) {
.product-title {
font-size: 32px;
}
.section-title {
font-size: 28px;
}
.story-content {
font-size: 16px;
}
}
화요 41°
깊고 진한 풍미의 정점, 프리미엄 증류식 소주
100% 국산 쌀
엄선된 국내산 쌀만을 사용하여 만든 진정한 프리미엄 증류주
41도 높은 도수
일반 소주의 2배, 깊고 진한 맛과 향을 온전히 담아낸 도수
전통 증류 방식
감압증류 방식으로 순수한 맛과 부드러운 목넘김 실현
프리미엄 한정 생산
소량 생산으로 품질을 극대화한 특별한 소주
화요, 불의 정수를 담다
화요(火曜)는 ‘불의 요일’이라는 뜻으로, 증류 과정에서 가장 중요한 불의 온도와 시간을 완벽하게 조절하여 만든 명품 소주입니다.
특히 41도는 화요 라인업 중에서도 가장 높은 도수로, 증류 원액의 맛과 향을 최대한 살려낸 프리미엄 제품입니다. 일반 소주와는 차원이 다른 깊이 있는 풍미와 부드러운 목넘김을 경험하실 수 있습니다.
장인의 정성, 4단계 제조 과정
원료 선별
100% 국내산 쌀을 엄격한 기준으로 선별
발효
전통 누룩으로 자연 발효하여 깊은 맛 생성
증류
감압증류 방식으로 순수한 알코올만 추출
숙성
최적의 온도에서 숙성하여 부드러운 맛 완성
테이스팅 노트
완벽한 페어링
추천 음용법
품질 인증
제품 정보
• 도수: 41%
• 원재료: 쌀(국산 100%), 누룩, ��제수
• 제조사: 화요
• 보관방법: 직사광선을 피하고 서늘한 곳에 보관
• 임신 중 음주는 태아에게 해롭습니다
• 미성년자는 구매할 수 없습니다
특별한 순간을 위한 프리미엄 소주
화요 41도와 함께 잊지 못할 경험을 만들어보세요







Valoraciones
No hay valoraciones aún.