/* /MainLayout.razor.rz.scp.css */
/* MainLayout은 NavBar/Footer/Toast만 렌더링하므로 별도 스타일 없음.
   각 페이지는 자체 .razor.css에서 스타일 관리. */
/* /Pages/BuyNowButton.razor.rz.scp.css */
.buy-now-fab[b-qhtx773rmw] {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 8000;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), background 0.3s, color 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.buy-now-fab.show[b-qhtx773rmw] {
    transform: translateX(0);
}

.buy-now-fab:hover[b-qhtx773rmw] {
    background: #000;
    color: #fff;
}

.buy-now-label[b-qhtx773rmw] {
    line-height: 1;
}

.buy-now-count[b-qhtx773rmw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1;
    transition: background 0.3s, color 0.3s;
}

.buy-now-fab:hover .buy-now-count[b-qhtx773rmw] {
    background: #fff;
    color: #000;
}
/* /Pages/Cart.razor.rz.scp.css */
.cart-page[b-46tdqv7ojx] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.container[b-46tdqv7ojx] {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.section-header[b-46tdqv7ojx] {
    margin-bottom: 24px;
    text-align: center;
    flex-shrink: 0;
}

.section-header h2[b-46tdqv7ojx] {
    font-size: 3.5rem;
    font-weight: 200;
}

.cart-center[b-46tdqv7ojx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.cart-body[b-46tdqv7ojx] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 100%;
}

.cart-scroll[b-46tdqv7ojx] {
    max-height: 580px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cart-scroll[b-46tdqv7ojx]::-webkit-scrollbar {
    display: none;
}

.cart-table[b-46tdqv7ojx] {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead[b-46tdqv7ojx] {
    position: sticky;
    top: 0;
    background: #000;
    z-index: 1;
}

.cart-table th[b-46tdqv7ojx] {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
}

.cart-table td[b-46tdqv7ojx] {
    padding: 24px 20px;
    border-bottom: 1px solid #111;
    vertical-align: middle;
}

.cart-item-wrap[b-46tdqv7ojx] {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}

.cart-item-img[b-46tdqv7ojx] {
    width: 80px;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(1);
    flex-shrink: 0;
    transition: filter 0.6s ease;
}

.cart-item-wrap:hover .cart-item-img[b-46tdqv7ojx] {
    filter: grayscale(0);
}

.cart-item-name[b-46tdqv7ojx] {
    transition: color 0.3s;
}

.cart-item-wrap:hover .cart-item-name[b-46tdqv7ojx] {
    color: #c5a059;
}

.mono[b-46tdqv7ojx] {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #aaa;
}

.cart-stepper[b-46tdqv7ojx] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #333;
}

.cart-step-btn[b-46tdqv7ojx] {
    background: none;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-step-btn:hover[b-46tdqv7ojx] {
    background: #111;
}

.cart-step-num[b-46tdqv7ojx] {
    width: 36px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #fff;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    height: 30px;
    line-height: 30px;
}

.cart-remove-cell[b-46tdqv7ojx] {
    text-align: right;
    width: 50px;
}

.cart-remove[b-46tdqv7ojx] {
    background: none;
    border: none;
    color: #666;
    font-size: 22px;
    line-height: 1;
    padding: 4px 10px;
    transition: color 0.3s;
}

.cart-remove:hover[b-46tdqv7ojx] {
    color: #fff;
}

.spacer[b-46tdqv7ojx] {
    flex: 1;
}

.cart-total[b-46tdqv7ojx] {
    text-align: right;
    padding: 30px 40px;
    background: #050505;
    flex-shrink: 0;
}

.total-label[b-46tdqv7ojx] {
    color: #666;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
}

.cart-total h3[b-46tdqv7ojx] {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 24px;
}

.btn[b-46tdqv7ojx] {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: #fff;
    background: none;
    text-align: center;
    transition: 0.5s;
}

.btn:hover[b-46tdqv7ojx] {
    background: #fff;
    color: #000;
}

.btn-black[b-46tdqv7ojx] {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-black:hover[b-46tdqv7ojx] {
    background: #111;
    color: #fff;
}

.cart-empty[b-46tdqv7ojx] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
}
/* /Pages/Contact.razor.rz.scp.css */
.contact-page[b-ykwqv88995] {
    height: 100vh;
    display: flex;
    box-sizing: border-box;
    overflow: hidden;
    padding: 120px 0 60px;
}

.container[b-ykwqv88995] {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
}

.visit-layout[b-ykwqv88995] {
    display: flex;
    gap: 80px;
    align-items: stretch;
    width: fit-content;
    margin: 0 auto;
    flex: 1;
    min-height: 0;
}

.map-wrapper[b-ykwqv88995] {
    width: 520px;
    flex-shrink: 0;
    border: 1px solid #222;
    overflow: hidden;
}

.map-wrapper iframe[b-ykwqv88995] {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.info-pane[b-ykwqv88995] {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.info-pane h2[b-ykwqv88995] {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 40px;
}

.contact-item[b-ykwqv88995] {
    margin-bottom: 28px;
}

.contact-item h4[b-ykwqv88995] {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 10px;
    color: #666;
}

.contact-item p[b-ykwqv88995] {
    font-size: 14px;
    color: #aaa;
    line-height: 2;
}

.kakao-link[b-ykwqv88995] {
    display: inline-block;
    margin-top: 24px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 5px;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}

.kakao-link:hover[b-ykwqv88995] {
    opacity: 0.7;
    transform: translateX(4px);
}
/* /Pages/Footer.razor.rz.scp.css */
footer[b-f6vzdc8e5j] {
    background: #050505;
    border-top: 1px solid #333;
}

.footer-inner[b-f6vzdc8e5j] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px 28px;
}

.footer-top[b-f6vzdc8e5j] {
    margin-bottom: 16px;
}

.footer-social[b-f6vzdc8e5j] {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-social a[b-f6vzdc8e5j] {
    color: #888;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-social a:hover[b-f6vzdc8e5j] {
    color: #fff;
}

.footer-logo[b-f6vzdc8e5j] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 10px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-desc[b-f6vzdc8e5j] {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
}

.footer-bottom[b-f6vzdc8e5j] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.biz-info[b-f6vzdc8e5j] {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #666;
    line-height: 1.9;
}

.footer-right[b-f6vzdc8e5j] {
    text-align: right;
}

.footer-links[b-f6vzdc8e5j] {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.footer-links a[b-f6vzdc8e5j] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover[b-f6vzdc8e5j] {
    color: #fff;
}

.copyright[b-f6vzdc8e5j] {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #666;
}
/* /Pages/Index.razor.rz.scp.css */
.story-page[b-cp67jpcsas] {
    min-height: 100vh;
}

/* Hero */
.story-hero[b-cp67jpcsas] {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.story-hero img[b-cp67jpcsas] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.5);
}

.story-hero-overlay[b-cp67jpcsas] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.story-hero-title[b-cp67jpcsas] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.story-hero-title .label[b-cp67jpcsas] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.story-hero-title h1[b-cp67jpcsas] {
    font-family: 'Montserrat', sans-serif;
    font-size: 5vw;
    font-weight: 200;
    letter-spacing: 20px;
    color: #fff;
}

/* Container */
.container[b-cp67jpcsas] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px 0;
}

/* Intro text */
.story-intro[b-cp67jpcsas] {
    max-width: 760px;
    margin: 0 auto 140px;
    text-align: center;
}

.story-intro p[b-cp67jpcsas] {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 2.4;
    letter-spacing: 1px;
}

/* Flex sections */
.story-flex[b-cp67jpcsas] {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid #2a2a2a;
}


.story-flex.reverse[b-cp67jpcsas] {
    flex-direction: row-reverse;
}

.story-visual[b-cp67jpcsas] {
    flex: 1.2;
    height: 440px;
    overflow: hidden;
    /* 사진 자리 확보, 사진은 추후 추가 */
}

.story-visual img[b-cp67jpcsas] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 1s ease;
}

.story-flex:hover .story-visual img[b-cp67jpcsas] {
    filter: grayscale(20%);
}

.story-text[b-cp67jpcsas] {
    flex: 1;
}

.story-text .label[b-cp67jpcsas] {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: #888;
    margin-bottom: 30px;
}

.story-text h2[b-cp67jpcsas] {
    font-size: 3.2rem;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.story-text p[b-cp67jpcsas] {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 2.4;
}
/* /Pages/NavBar.razor.rz.scp.css */
header[b-ihbfn3euu3] {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background: transparent;
    transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled[b-ihbfn3euu3] {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 60px;
    border-bottom: 1px solid #111;
}

.logo[b-ihbfn3euu3] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 10px;
    color: #fff;
}

nav[b-ihbfn3euu3] {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a[b-ihbfn3euu3] {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.6;
    transition: 0.3s;
}

nav a:hover[b-ihbfn3euu3] {
    opacity: 1;
    color: #c5a059;
}

.cart-link[b-ihbfn3euu3] {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s;
    color: #fff;
    text-decoration: none;
}

.cart-link:hover[b-ihbfn3euu3] {
    opacity: 1;
}

.cart-badge[b-ihbfn3euu3] {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 9px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 968px) {
    header[b-ihbfn3euu3],
    header.scrolled[b-ihbfn3euu3] {
        padding: 20px 30px;
    }

    nav[b-ihbfn3euu3] {
        display: none;
    }
}
/* /Pages/PageTransition.razor.rz.scp.css */
#page-transition[b-ndpjjow6vq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 15000;
    transform: translateY(100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-text[b-ndpjjow6vq] {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 15px;
    font-weight: 200;
    color: #fff;
    overflow: hidden;
}

.tt-span[b-ndpjjow6vq] {
    display: block;
    transform: translateY(100%);
}
/* /Pages/Privacy.razor.rz.scp.css */
.legal-page[b-93wrixney6] {
    padding-top: 130px;
    min-height: 100vh;
}

.container[b-93wrixney6] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 60px;
}

.legal-header[b-93wrixney6] {
    margin-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 28px;
}

.legal-header .label[b-93wrixney6] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 8px;
    color: #666;
    margin-bottom: 14px;
}

.legal-header h1[b-93wrixney6] {
    font-size: 2.4rem;
    font-weight: 200;
    letter-spacing: 4px;
}

.legal-body section[b-93wrixney6] {
    margin-bottom: 28px;
}

.legal-body h2[b-93wrixney6] {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
}

.legal-body p[b-93wrixney6] {
    color: #999;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 6px;
}

.legal-body ul[b-93wrixney6] {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.legal-body ul li[b-93wrixney6] {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.legal-body ul li[b-93wrixney6]::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #555;
}

.legal-footer-info[b-93wrixney6] {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.legal-footer-info p[b-93wrixney6] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}
/* /Pages/ProductDetail.razor.rz.scp.css */
.container[b-k5drskcitl] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product-detail[b-k5drskcitl] {
    display: flex;
    gap: 100px;
    align-items: stretch;
    height: 70vh;
    width: 100%;
    margin-top: 40px;
}

.detail-img[b-k5drskcitl] {
    flex: 1.2;
    border: 1px solid #111;
    overflow: hidden;
}

.detail-img img[b-k5drskcitl] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    display: block;
}

.detail-info[b-k5drskcitl] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.detail-label[b-k5drskcitl] {
    letter-spacing: 5px;
    color: #666;
    display: block;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    flex-shrink: 0;
}

.detail-info h2[b-k5drskcitl] {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.price[b-k5drskcitl] {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    flex-shrink: 0;
}

.desc[b-k5drskcitl] {
    color: #aaa;
    line-height: 2;
    margin-bottom: 50px;
    flex: 1;
}

.quantity-box[b-k5drskcitl] {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 16px 0;
    flex-shrink: 0;
}

.qty-display[b-k5drskcitl] {
    width: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1;
}

.qty-btn[b-k5drskcitl] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.qty-btn:hover[b-k5drskcitl] {
    color: #888;
}

.btn-row[b-k5drskcitl] {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn[b-k5drskcitl] {
    flex: 1;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: #fff;
    background: none;
    text-align: center;
    transition: 0.5s;
}

.btn:hover[b-k5drskcitl] {
    background: #fff;
    color: #000;
}

.btn-black[b-k5drskcitl] {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-black:hover[b-k5drskcitl] {
    background: #111;
    color: #fff;
}

.not-found[b-k5drskcitl] {
    padding-top: 200px;
    text-align: center;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
}
/* /Pages/Shop.razor.rz.scp.css */
.shop-page[b-cr0lbb5cjd] {
    padding-top: 150px;
    min-height: 100vh;
}

.container[b-cr0lbb5cjd] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.shop-header[b-cr0lbb5cjd] {
    margin-bottom: 100px;
}

.shop-header h2[b-cr0lbb5cjd] {
    font-size: 4vw;
    font-weight: 200;
    letter-spacing: -2px;
}

.shop-grid[b-cr0lbb5cjd] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.shop-item[b-cr0lbb5cjd] {
    position: relative;
    margin-bottom: 60px;
}

.shop-item:nth-child(even)[b-cr0lbb5cjd] {
    margin-top: 80px;
}

.img-wrap[b-cr0lbb5cjd] {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111;
    margin-bottom: 20px;
}

.img-wrap img[b-cr0lbb5cjd] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.shop-item:hover img[b-cr0lbb5cjd] {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.item-info h3[b-cr0lbb5cjd] {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.item-info p[b-cr0lbb5cjd] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #666;
    margin-bottom: 16px;
}

.buy-btn[b-cr0lbb5cjd] {
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.buy-btn:hover[b-cr0lbb5cjd] {
    color: #888;
    border-color: #888;
}

.stepper[b-cr0lbb5cjd] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #333;
}

.step-btn[b-cr0lbb5cjd] {
    background: none;
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.step-btn:hover[b-cr0lbb5cjd] {
    background: #111;
}

.step-num[b-cr0lbb5cjd] {
    width: 36px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #fff;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    height: 32px;
    line-height: 32px;
}

@media (max-width: 1024px) {
    .shop-grid[b-cr0lbb5cjd] {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .shop-item[b-cr0lbb5cjd] {
        grid-column: span 1;
    }

    .shop-item:nth-child(even)[b-cr0lbb5cjd] {
        margin-top: 0;
    }

    .shop-header h2[b-cr0lbb5cjd] {
        font-size: 8vw;
    }
}

@media (max-width: 600px) {
    .container[b-cr0lbb5cjd] {
        padding: 0 30px;
    }

    .shop-grid[b-cr0lbb5cjd] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Terms.razor.rz.scp.css */
.legal-page[b-0klk3mapnz] {
    padding-top: 130px;
    min-height: 100vh;
}

.container[b-0klk3mapnz] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 60px;
}

.legal-header[b-0klk3mapnz] {
    margin-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 28px;
}

.legal-header .label[b-0klk3mapnz] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 8px;
    color: #666;
    margin-bottom: 14px;
}

.legal-header h1[b-0klk3mapnz] {
    font-size: 2.4rem;
    font-weight: 200;
    letter-spacing: 4px;
}

.legal-body section[b-0klk3mapnz] {
    margin-bottom: 28px;
}

.legal-body h2[b-0klk3mapnz] {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
}

.legal-body p[b-0klk3mapnz] {
    color: #999;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 6px;
}

.legal-body ul[b-0klk3mapnz] {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.legal-body ul li[b-0klk3mapnz] {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.legal-body ul li[b-0klk3mapnz]::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #555;
}

.legal-footer-info[b-0klk3mapnz] {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.legal-footer-info p[b-0klk3mapnz] {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}
/* /Pages/Toast.razor.rz.scp.css */
.toast[b-6bidifodbt] {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    padding: 12px 32px;
    min-width: 172px;
    text-align: center;
    box-sizing: border-box;
    z-index: 9000;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), bottom 0.4s ease;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.toast.show[b-6bidifodbt] {
    transform: translateX(0);
}

.toast.lifted[b-6bidifodbt] {
    bottom: 124px;
}
