* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcfaf6;
    color: #111111;
    overflow-x: hidden;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
a:active,
a *,
a:visited *,
[href^="tel:"],
[href^="tel:"] *,
[href^="mailto:"],
[href^="mailto:"] * {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    border-bottom: 3px solid #111111;
    position: sticky;
    top: 0;
    z-index: 999;
    gap: 12px;
    flex-wrap: nowrap;
}

.nav-brand-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.moving-logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background-color: #ffffff;
    border: 2px solid #111111;
    border-radius: 50%;
    padding: 4px;
    animation: spinRound 8s linear infinite;
}

@keyframes spinRound {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}

.btn-buy, .btn-buy-footer {
    background-color: #f4d03f;
    color: #111111;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    border: 3px solid #111111;
    box-shadow: 3px 3px 0px #111111;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-buy:hover, .btn-buy-footer:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #111111;
}

.btn-buy-footer {
    margin-top: 15px;
    width: 100%;
}

.sticker-hero {
    height: 68vh;
    background-color: #ffffff;
    position: relative;
    border-bottom: 3px solid #111111;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticker-img-box {
    position: absolute;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2;
}

.sticker-img-box img {
    display: block;
    max-width: 175px;
    height: auto;
    object-fit: contain;
}

.sticker-img-box:nth-child(1) img,
.sticker-img-box:nth-child(2) img,
.sticker-img-box:nth-child(3) img,
.sticker-img-box:nth-child(4) img {
    max-width: 230px;
}

.sticker-img-box:nth-child(6) img {
    max-width: 120px;
}

.sticker-img-box:hover {
    transform: scale(1.15) rotate(0deg) !important;
}

.hero-center-mask {
    text-align: center;
    z-index: 5;
    background: transparent;
    pointer-events: none;
}

.hero-center-mask h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -1px;
    text-align: center;
    color: #111111;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 600;
    color: #555555;
    text-align: center;
    margin-top: 6px;
}

.product-section {
    padding: 70px 5%;
    border-bottom: 3px solid #111111;
}

.section-title {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 45px;
    text-align: center;
}

.product-container {
    display: flex;
    gap: 40px;
}

.product-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border: 3px solid #111111;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover, .product-card.active {
    box-shadow: 6px 6px 0px #111111;
    transform: translateY(-4px);
    background-color: #f5f5f2;
}

.product-card.sake-wiki-card {
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    border: 3px dashed #111111;
    background-color: #f1f9f5;
}

.product-card.sake-wiki-card:hover, .product-card.sake-wiki-card.active {
    background-color: #e4f3eb;
    border-style: solid;
}

.product-card.recipe-card {
    background-color: #ffffff;
    border-style: solid;
}

.product-card.recipe-card:hover, .product-card.recipe-card.active {
    background-color: #f5f5f2;
}

.recipe-emoji-wrapper {
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .img-wrapper {
    width: 104px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 14px;
    background: transparent;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.img-wrapper.spec-wiki-icon {
    border-radius: 50% 40% 45% 50%;
}

.product-card img {
    position: relative;
    z-index: 1;
    max-height: 108%;
    max-width: 100%;
    object-fit: contain;
}

.card-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 3px;}
.card-info span { font-size: 14px; color: #666666; font-weight: 500;}

.product-detail-panel {
    flex: 1.2;
    background: #ffffff;
    border: 3px solid #111111;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 8px 8px 0px #111111;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.detail-content { flex: 1.2; padding-right: 20px; }
.detail-tag {
    font-size: 11px; font-weight: 800; background: #111111; color: #ffffff;
    padding: 3px 9px; border-radius: 5px; display: inline-block; margin-bottom: 12px;
}
.detail-content h2 { font-size: 36px; font-weight: 900; margin-bottom: 15px; }

.detail-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    white-space: pre-line;
}

.detail-image-box {
    flex: 0.8;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.detail-image-box img {
    position: relative;
    z-index: 1;
    max-height: 118%;
    max-width: 108%;
    object-fit: contain;
}

.recipe-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 520px;
}

.recipe-panel h2 { font-size: 32px; font-weight: 900; margin-bottom: 10px; }

.recipe-intro {
    font-size: 14px;
    color: #555555;
    margin-bottom: 18px;
}

.recipe-list {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 6px;
}

.recipe-list::-webkit-scrollbar { width: 8px; }
.recipe-list::-webkit-scrollbar-thumb { background: #111111; border-radius: 10px; }
.recipe-list::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 10px; }

.recipe-item {
    border: 2.5px solid #111111;
    border-radius: 16px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fffdf5;
    transition: all 0.2s ease;
}

.recipe-item:hover {
    background: #fff6d9;
    transform: translateX(2px);
}

.recipe-item.open {
    background: #fff2c4;
    box-shadow: 4px 4px 0px #111111;
}

.recipe-item-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.recipe-emoji {
    font-size: 28px;
    flex-shrink: 0;
}

.recipe-item-text {
    flex: 1;
}

.recipe-item-text h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
}

.recipe-combo {
    font-size: 13px;
    color: #666666;
}

.recipe-toggle-icon {
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.recipe-item.open .recipe-toggle-icon {
    transform: rotate(45deg);
}

.recipe-tip {
    max-height: 0;
    overflow: hidden;
    font-size: 13.5px;
    color: #333333;
    line-height: 1.55;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.recipe-item.open .recipe-tip {
    max-height: 400px;
    padding-top: 12px;
}

.recipe-steps {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recipe-steps li {
    color: #222222;
}

.recipe-tip-text {
    margin-top: 10px;
    font-style: italic;
    color: #555555;
    border-top: 1.5px dashed #cccccc;
    padding-top: 8px;
}

.footer {
    background: #fcfaf6;
    padding: 50px 5% 70px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: 0;
    padding-left: 0;
}
.footer-brand p { color: #555555; text-align: left; }
.copyright { font-size: 12px; color: #999999; margin-top: 15px; text-align: left; }

.community-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 3px solid #111111;
    border-radius: 22px;
    padding: 14px 32px;
    background-color: #f2f2f2;
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.community-btn:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0px #111111;
    background-color: #ffffff;
}

.community-text {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
}

.community-handle {
    font-size: 21px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #111111;
    font-family: 'Times New Roman', Times, serif;
    white-space: nowrap;
}

.community-handle svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.footer-contact {
    background: #ffffff;
    border: 3px solid #111111;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 4px 4px 0px #111111;
    min-width: 280px;
}
.footer-contact h4 { font-size: 15px; font-weight: 800; margin-bottom: 12px; text-transform: uppercase;}
.footer-contact p { margin-bottom: 6px; color: #111111; }

.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.popup-card {
    background: #ffffff;
    border: 4px solid #111111;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    padding: 35px;
    box-shadow: 10px 10px 0px #111111;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.show .popup-card {
    transform: scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 32px; font-weight: bold;
    cursor: pointer; color: #111111;
}

.popup-header h3 {
    font-size: 22px; font-weight: 900;
    border-bottom: 3px solid #111111;
    padding-bottom: 12px; margin-bottom: 20px;
    text-align: center;
}

.popup-body p { margin-bottom: 12px; font-size: 15px; color: #111111; }

.location-box {
    background: #f0f7ff;
    border: 2px solid #111111;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin: 20px 0;
}
.location-icon { font-size: 24px; }
.popup-note { font-size: 13px !important; color: #666666; font-style: italic; text-align: center; line-height: 1.4; }

@media (max-width: 768px) {
    .product-container { flex-direction: column; }
    .footer { flex-direction: column; align-items: flex-start; }
    .product-detail-panel { width: 100%; }

    .sticker-hero {
        height: auto;
        min-height: 110vw;
        padding: 26px 0;
    }

    .sticker-img-box { width: 16vw; max-width: 72px; min-width: 40px; }

    .sticker-img-box img,
    .sticker-img-box:nth-child(1) img,
    .sticker-img-box:nth-child(2) img,
    .sticker-img-box:nth-child(3) img,
    .sticker-img-box:nth-child(4) img,
    .sticker-img-box:nth-child(5) img,
    .sticker-img-box:nth-child(6) img,
    .sticker-img-box:nth-child(7) img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .sticker-img-box:nth-child(1),
    .sticker-img-box:nth-child(2),
    .sticker-img-box:nth-child(3),
    .sticker-img-box:nth-child(4) {
        width: 20vw;
        max-width: 92px;
        min-width: 52px;
    }

    .sticker-img-box:nth-child(6) {
        width: 12vw;
        max-width: 54px;
        min-width: 30px;
    }

    .sticker-img-box:nth-child(1) { top: 6%  !important; left: 3%   !important; }
    .sticker-img-box:nth-child(3) { top: 22% !important; left: 27%  !important; }
    .sticker-img-box:nth-child(5) { top: 13% !important; left: 50%  !important; right: auto !important; }
    .sticker-img-box:nth-child(6) { top: 8%  !important; right: 4%  !important; left: auto !important; }

    .sticker-img-box:nth-child(2) { top: 60% !important; left: 9%   !important; }
    .sticker-img-box:nth-child(4) { top: 67% !important; left: 41%  !important; }
    .sticker-img-box:nth-child(7) { top: 64% !important; left: 66%  !important; }

    .hero-center-mask h1 { font-size: 38px; }
    .hero-subtitle { font-size: 15px; }

    .recipe-panel { max-height: none; }
}

@media (max-width: 480px) {
    .hero-center-mask h1 { font-size: 30px; }
    .sticker-hero { min-height: 118vw; }

    .navbar { padding: 12px 4%; }
    .nav-brand-area { gap: 8px; }
    .moving-logo-icon { width: 34px; height: 34px; }

    .nav-logo-img, .footer-logo-img { height: 48px; }

    .btn-buy { padding: 9px 16px; font-size: 11px; }
    .nav-actions { gap: 8px; }

    .section-title { font-size: 24px; margin-bottom: 28px; }

    .product-card { padding: 16px; gap: 14px; }
    .product-card .img-wrapper { width: 78px; height: 108px; }
    .card-info h3 { font-size: 16px; }
    .card-info span { font-size: 12px; }

    .product-detail-panel {
        flex-direction: column-reverse;
        padding: 24px;
        gap: 20px;
    }
    .detail-content { padding-right: 0; text-align: center; }
    .detail-content h2 { font-size: 24px; }
    .detail-content p { font-size: 14px; }
    .detail-image-box { height: 230px; }

    .recipe-panel h2 { font-size: 24px; text-align: center; }
    .recipe-intro { text-align: center; }
    .recipe-list { max-height: 340px; }

    .footer-contact { min-width: 0; width: 100%; }
    .popup-card { padding: 24px; }

    .community-btn { padding: 10px 22px; border-width: 2.5px; border-radius: 18px; margin-top: 16px; margin-bottom: 0; }
    .community-handle { font-size: 18px; }
    .community-text { font-size: 12px; }
    .community-handle svg { width: 17px; height: 17px; }
}

@media (max-width: 360px) {
    .navbar { padding: 10px 3%; gap: 6px; }
    .nav-brand-area { gap: 6px; }
    .nav-logo-img, .footer-logo-img { height: 40px; }
    .moving-logo-icon { width: 30px; height: 30px; }
    .btn-buy { padding: 7px 11px; font-size: 9.5px; }
    .nav-actions { gap: 6px; }

    .sticker-hero { min-height: 128vw; }
    .sticker-img-box { width: 13vw; max-width: 50px; min-width: 30px; }
    .sticker-img-box:nth-child(1),
    .sticker-img-box:nth-child(2),
    .sticker-img-box:nth-child(3),
    .sticker-img-box:nth-child(4) {
        width: 17vw;
        max-width: 64px;
        min-width: 38px;
    }
    .sticker-img-box:nth-child(6) {
        width: 10vw;
        max-width: 38px;
        min-width: 22px;
    }
}