body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #2A2A2A;

    /* ベース背景 */
    background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f7f2ea 35%, #f3ece2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 光のぼかし（上品なモダン感） */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 150, 106, 0.25), transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

/* もう一つの光源 */
body::after {
    content: "";
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 94, 60, 0.18), transparent 60%);
    filter: blur(50px);
    z-index: -1;
}

/* ノイズ（質感を出す） */
body {
    background-image:
        radial-gradient(circle at 20% 20%, #ffffff 0%, #f7f2ea 35%, #f3ece2 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.article-item,
.product-detail-card,
.article-detail-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.75);
}

.title,
h1,
h2,
.label-name,
.label-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.03em;
}

:root {
    --jam-label-bg: #FDFAF4;
    --jam-cream: #F5F0E8;
    --jam-brown: #8B5E3C;
    --jam-brown-light: #C4966A;
    --jam-brown-dark: #3D1F0A;
    --bg-base: #f6efe6;
}

.btn-secondary {
    background-color: #A67855;
    /* ミルクブラウン寄り */
    border-color: #A67855;
    color: #fff;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all .2s ease;
}

/* hover（しっかり締める） */
.btn-secondary:hover {
    background-color: var(--jam-brown-dark);
    border-color: var(--jam-brown-dark);
    color: #fff;

    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    filter: brightness(1.05);
}

/* focus */
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--jam-brown-dark) !important;
    border-color: var(--jam-brown-dark) !important;
    box-shadow: 0 0 0 0.2rem rgba(166, 120, 85, 0.25);
}

cp-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

cp-breadcrumb a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

cp-breadcrumb .breadcrumb-item.active {
    color: #000;
    font-weight: 600;
}


.scroll-top-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ボタン本体 */
.scroll-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.65rem 1.2rem;
    border-radius: 999px;

    background: #111827;
    color: #fff !important;

    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    transition: all 0.2s ease;
}

/* hover：浮く */
.scroll-top-btn:hover {
    transform: translateY(-2px);
    background: #1f2937;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* active */
.scroll-top-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* アイコン微調整 */
.scroll-top-btn i {
    font-size: 0.9rem;
}



.recruit-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111827;
}

.recruit-text {
    color: #6b7280;
    font-size: 1rem;
}

/* テーブル全体をカード化 */
table.table-info {
    width: 100%;
    table-layout: fixed;
    max-width: 900px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: none;
}

/* Bootstrapの線を弱める */
table.table-info tr {
    border-bottom: 1px solid #f1f5f9;
}

table.table-info tr:last-child {
    border-bottom: none;
}

/* 左側（項目名） */
table.table-info th {
    width: 35%;
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    padding: 1rem 1.2rem;
    vertical-align: top;
}

/* 右側（内容） */
table.table-info td {
    width: 65%;
    padding: 1rem 1.2rem;
    color: #111827;
    line-height: 1.6;
}

/* ホバーで軽く浮く */
table.table-info tr:hover td {
    background: #f9fafb;
}


[data-store-list] {
    display: grid;
    gap: 1rem;
}

/* カード本体 */
[data-store-list] .card {
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #fff;
    transition: all 0.18s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* hoverで浮く */
[data-store-list] .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* タイトル */
[data-store-list] h3 {
    border: none !important;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

/* 店舗名リンク */
[data-store-list] .name {
    color: #111827;
    text-decoration: none;
    font-weight: 700;
}

[data-store-list] .name:hover {
    color: #4f46e5;
}

/* 内部情報 */
[data-store-list] .address {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ラベル系（TEL / 営業時間） */
[data-store-list] p {
    margin: 0.25rem 0;
    color: #374151;
}

/* ちょい区切り感 */
[data-store-list] .ms-3 {
    padding-top: 0.5rem;
}

[data-store-detail] .card {
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    width: 100%;
}

/* 店舗名 */
[data-store-detail] .name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* 各テキスト */
[data-store-detail] p {
    margin: 0.4rem 0;
    color: #374151;
    font-size: 1rem;
}

/* 住所だけ少し弱く */
[data-store-detail] .address {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ラベル風に整える */
[data-store-detail] p span {
    color: #111827;
    font-weight: 500;
}

/* hover（軽く浮く） */
[data-store-detail] .card {
    transition: all 0.18s ease;
}

[data-store-detail] .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

cp-footer {
    display: block;
    margin-top: auto;
    background: var(--jam-cream);
    border-top: 1px solid rgba(139, 94, 60, 0.15);
}

/* フッター本体 */
cp-footer .cp-footer {
    padding: 2rem 1.5rem;
}

/* ナビボタンエリア */
cp-footer .btn {
    background: var(--jam-brown);
    border: 1px solid var(--jam-brown);
    color: #fff;

    border-radius: 999px;
    font-size: 0.85rem;

    padding: 0.35rem 1rem;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    transition: all 0.2s ease;
}

/* hover：少し抜ける（今っぽい） */
cp-footer .btn:hover {
    background: var(--jam-brown-dark);
    border-color: var(--jam-brown-dark);

    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

cp-footer .btn:active {
    transform: translateY(1px);
    opacity: 0.8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* 情報エリア */
cp-footer .cp-footer-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--jam-brown-dark);
}

/* ラベル（Tel / Fax） */
cp-footer .text-muted {
    color: var(--jam-brown-light) !important;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* リンク（電話番号など） */
cp-footer a {
    color: var(--jam-brown-dark);
    text-decoration: none;
    font-weight: 500;

    transition: all 0.2s ease;
}

/* hover：軽く抜ける */
cp-footer a:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

/* レイアウト微調整 */
cp-footer .cp-footer-info>div {
    min-width: 120px;
}




.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 700;
    letter-spacing: 0.08em;

    color: var(--jam-brown-dark);

    text-align: center;
    line-height: 1.1;

    margin-bottom: 12px;

    position: relative;
    display: inline-block;
}

/* 下線アクセント */
.main-title::after {
    content: "";
    display: block;

    width: 70%;
    height: 2px;

    margin: 14px auto 0;

    background: linear-gradient(to right,
            transparent,
            var(--jam-brown-light),
            transparent);
}

.main-title span {
    display: block;
    font-size: 16px;
    letter-spacing: 0.35em;
    margin-top: 10px;
    color: var(--jam-brown);
    font-family: 'Noto Sans JP', sans-serif;
}



.jam-card .product-title {
    position: static;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--jam-brown-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.jam-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.12);
}

/* 画像エリア */

.jar-area {
    position: relative;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-radius: 12px;
}

.jar-area .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .45s ease;
}

.jam-card:hover .bg-img {
    transform: scale(1.06);
}

.jar-area .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .10),
            rgba(0, 0, 0, .35));
}

/* ラベル */

.label {
    position: relative;
    z-index: 2;
    width: 160px;
    background: var(--jam-label-bg);
    border: 2px solid var(--jam-brown);
    border-radius: 4px;
    padding: 16px 12px;
    text-align: center;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, .15);
}

.label::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid var(--jam-brown-light);
    pointer-events: none;
}

.label-brand {
    font-size: 10px;

    letter-spacing: .2em;

    text-transform: uppercase;

    color: var(--jam-brown);

    margin-bottom: 6px;
}

.label-name {
    font-size: 20px;

    font-weight: 700;

    color: var(--jam-brown-dark);

    line-height: 1.3;

    margin-bottom: 8px;

    text-align: center;
    line-break: strict;
    word-break: keep-all;
}

.label-name-en {
    font-size: 11px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--jam-brown);
    padding-top: 5px;
}

.label-divider {
    width: 60px;
    height: 1px;

    background: var(--jam-brown-light);

    margin: 10px auto;
}

.label-weight {
    font-size: 10px;

    color: #7B5A3E;
}


/* カテゴリー */

h2[data-category] {
    font-size: 1.5rem;

    font-weight: 700;

    border-color: #D8C7B5 !important;

    color: #3D1F0A;
}



#article-list>.article-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid #eee;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all .25s ease;
    position: relative;
}

#article-list>.article-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

#article-list>.article-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: var(--jam-brown-light);
    border-radius: 2px;
}

.article-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 日付 */
.article-date {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

/* タイトルリンク */
.article-card {
    text-decoration: none;
    flex: 1;
    /* 残り幅をタイトルに使う */
}

.article-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.article-card::after {
    content: "→";
    margin-left: 6px;
    opacity: 0;
    transition: .2s;
}

.article-card:hover::after {
    opacity: 1;
}

/* タイトル */
.article-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jam-brown-dark);
    line-height: 1.4;
    transition: .2s ease;
}

.article-card:hover .article-title {
    color: var(--jam-brown);
    transform: translateX(3px);
}

.article-body {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 10px;
}

.body {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    white-space: pre-line;
}

#article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%;
}




.article-detail-card {
    max-width: 820px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.article-detail-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--jam-brown-dark);
    margin-bottom: 8px;
}

.article-date {
    font-size: 12px;
    color: #888;
}

.article-detail-body {
    margin-top: 24px;
}

.article-body {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    white-space: pre-line;
}


.product-detail-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--jam-brown-dark);
}

.product-detail-price {
    font-size: 25px;
    font-weight: 700;
    color: var(--jam-brown);
}

.product-detail-body {
    font-size: 16px;
}


.file-input {
    width: 138px;
}

.file-name {
    display: none;
}


a {
    text-decoration: none;
}

.title {
    font-size: 64px;
}

.container {
    max-width: 1100px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.product-card {
    position: relative;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    border-radius: 12px;
}

.product-card-area {
    border-radius: 12px;
    overflow: hidden;
}

.label-top {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    inset: 0;
    color: white;
    width: 150px;
    background: var(--jam-label-bg);
    border: 2px solid var(--jam-brown);
    border-radius: 12px 4px 4px 12px;
    padding: 32px 12px;
    text-align: center;
}

.badge-recommend {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    background: #F0EAE0;
    color: #7A5030;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 4px;
    line-height: 1;
}

[data-product] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

[data-product-detail] img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* 画像を完全フィット */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--jam-brown);
}


.article-card {
    all: unset;
    cursor: pointer;
}

.article-card span {
    font-size: 14px;
    padding: 5px;
}

[data-article-detail] .article-card {
    all: unset;
}

.body {
    white-space: pre-line;
}


[data-product-detail] .store a {
    margin-right: 10px;
    color: var(--jam-brown-light)
}

[data-store-list] h3 a {
    margin-right: 10px;
    color: rgb(99, 114, 179);
}


.tooltip {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.tooltip.hide {
    opacity: 0;
}

.custom-tooltip .tooltip-inner {
    background-color: #f1f1f1;
    color: #fff;
}

.custom-tooltip .tooltip-arrow::before {
    border-top-color: #f1f1f1;
}

@keyframes shakeSoft {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    75% {
        transform: translateX(-1px);
    }

    100% {
        transform: translateX(0);
    }
}

.border-pink-soft {
    border: 2px solid #e75c86 !important;
    border-radius: 8px;
    background-color: #fff5f8;
    animation: shakeSoft 0.25s ease;
}

/* ホバー時の不透明度を下げる */
.btn:hover {
    opacity: 0.6;
}

button[type="submit"]:disabled {
    cursor: not-allowed !important;
}

/* ハンバーガーメニュー */
.menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;

    width: min(360px, 80%);
    height: 100%;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);

    border-left: 1px solid rgba(139, 94, 60, 0.15);

    padding: 2rem 1.5rem;

    z-index: 1001;

    transform: translateX(100%);
    transition: transform 0.5s ease;
}

#menu-toggle {
    position: fixed;
    top: -100px;
}

#menu-toggle:checked~.menu {
    display: block;
    transform: translateX(0);
}

.menu-icon {
    position: fixed;
    top: 12px;
    right: 15px;

    width: 52px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 28px;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);

    border-radius: 12px;

    cursor: pointer;
    z-index: 1002;

    transition: all 0.2s ease;
}

.menu-icon:hover {
    transform: scale(1.05);
}

.menu-icon span {
    position: absolute;
    transition: all 0.4s ease;
}

/* open */
.menu-icon .open {
    opacity: 1;
}

/* close */
.menu-icon .close {
    opacity: 0;
    transform: rotate(-90deg);
}

#menu-toggle:checked~.menu-icon .open {
    opacity: 0;
    transform: rotate(90deg);
}

#menu-toggle:checked~.menu-icon .close {
    opacity: 1;
    transform: rotate(0deg);
}

.menu input {
    margin-bottom: 25px;
}

/* #region ハンバーガーメニュー内のpタグのアニメーション */
.menu p {
    transform: translateY(150px);
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.menu a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    color: #3D1F0A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu a:hover {
    background: rgba(166, 120, 85, 0.08);
    transform: translateX(4px);
    color: var(--jam-brown-dark);
}

#menu-toggle:checked~.menu p {
    transform: translateY(0);
    opacity: 1;
}

#menu-toggle:checked~.menu p:nth-child(1) {
    transition-delay: 0.1s;
}

#menu-toggle:checked~.menu p:nth-child(2) {
    transition-delay: 0.2s;
}

#menu-toggle:checked~.menu p:nth-child(3) {
    transition-delay: 0.3s;
}

#menu-toggle:checked~.menu p:nth-child(4) {
    transition-delay: 0.4s;
}

#menu-toggle:checked~.menu p:nth-child(5) {
    transition-delay: 0.5s;
}

#menu-toggle:checked~.menu p:nth-child(6) {
    transition-delay: 0.6s;
}

#menu-toggle:checked~.menu p:nth-child(7) {
    transition-delay: 0.7s;
}


.zoom {
    cursor: pointer;
}

.zoomback img {
    width: 50%;
}

#zoomback {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    display: none;
}

#zooming {
    max-width: 95vw;
    max-height: 70vh;
    object-fit: contain;
    border: solid 5px white;
    cursor: pointer;
}

.zoomIn {
    animation: zoomIn 0.2s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
}


/* #endregion */


.form-control {
    box-shadow: none !important;
    border-color: #ddd;
    transition: none !important;
}

/* フォーカス時 */
.form-control:focus {
    border-color: #ddd !important;
    box-shadow: none !important;
    outline: none !important;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    z-index: 1000;
    font-family: system-ui, -apple-system, sans-serif;
}

.chatbot-card {
    height: 480px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* header */
.chatbot-header {
    height: 50px;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* messages */
.chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7f8fa;
}

.chatbot-card.collapsed .chatbot-messages,
.chatbot-card.collapsed .chatbot-input {
    display: none;
}

.chatbot-card {
    height: 480px;
    display: flex;
    flex-direction: column;
    transition: height 0.2s ease;
}

.chatbot-card.collapsed {
    height: 50px;
    overflow: hidden;
}

.chatbot-toggle {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;

    background: #f1f3f5;
    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-toggle:hover {
    background: var(--jam-brown-light);
    color: white;
    transform: scale(1.08);
}

.chatbot-toggle:active {
    transform: scale(0.95);
}

/* message */
.msg {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
    animation: msgIn 0.18s ease-out;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* user */
.msg.user {
    align-self: flex-end;
    background: var(--jam-brown-light);
    color: white;
    border-bottom-right-radius: 6px;
}

/* bot */
.msg.bot {
    align-self: flex-start;
    background: white;
    color: #111;
    border: 1px solid #eee;
    border-bottom-left-radius: 6px;
}

/* input area */
.chatbot-input {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
}

/* input */
.chatbot-input input {
    flex: 1;
    border: none;
    background: #f1f3f5;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
}

/* button */
.chatbot-input button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--jam-brown-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chatbot-input button:hover {
    transform: scale(1.05);
}


.typing {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing .dot {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: blink 1.4s infinite ease-in-out;
}

.typing .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@media (max-width: 576px) {
    .chatbot-container {
        width: auto;
        max-width: 236px;
    }

    .chatbot-title {
        display: none;
    }

    .chatbot-card.collapsed {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .chatbot-header {
        justify-content: center;
    }
}



/* #region COLOR SET */

.bg-orange-100 {
    background: #ffe8d1 !important;
}

.bg-orange-200 {
    background: #ffd0a3 !important;
}

.bg-orange-300 {
    background: #ffb875 !important;
}

.bg-orange-400 {
    background: #ffa047 !important;
}

.bg-orange-500 {
    background: #fd7e14 !important;
    color: #fff;
}

.bg-orange-600 {
    background: #e96b0a !important;
    color: #fff;
}

.bg-orange-700 {
    background: #c85a08 !important;
    color: #fff;
}

.bg-orange-800 {
    background: #a04806 !important;
    color: #fff;
}

.bg-orange-900 {
    background: #7a3604 !important;
    color: #fff;
}

.bg-purple-100 {
    background: #efe6ff !important;
}

.bg-purple-200 {
    background: #d9c2ff !important;
}

.bg-purple-300 {
    background: #c39eff !important;
}

.bg-purple-400 {
    background: #ad7aff !important;
}

.bg-purple-500 {
    background: #6f42c1 !important;
    color: #fff;
}

.bg-purple-600 {
    background: #5b36a3 !important;
    color: #fff;
}

.bg-purple-700 {
    background: #482a84 !important;
    color: #fff;
}

.bg-purple-800 {
    background: #351f66 !important;
    color: #fff;
}

.bg-purple-900 {
    background: #231447 !important;
    color: #fff;
}

.bg-blue-100 {
    background: #dbeafe !important;
}

.bg-blue-200 {
    background: #bfdbfe !important;
}

.bg-blue-300 {
    background: #93c5fd !important;
}

.bg-blue-400 {
    background: #60a5fa !important;
}

.bg-blue-500 {
    background: #0d6efd !important;
    color: #fff;
}

.bg-blue-600 {
    background: #0b5ed7 !important;
    color: #fff;
}

.bg-blue-700 {
    background: #094db1 !important;
    color: #fff;
}

.bg-blue-800 {
    background: #073c8a !important;
    color: #fff;
}

.bg-blue-900 {
    background: #052c65 !important;
    color: #fff;
}

.bg-green-100 {
    background: #d1fae5 !important;
}

.bg-green-200 {
    background: #a7f3d0 !important;
}

.bg-green-300 {
    background: #6ee7b7 !important;
}

.bg-green-400 {
    background: #34d399 !important;
}

.bg-green-500 {
    background: #198754 !important;
    color: #fff;
}

.bg-green-600 {
    background: #157347 !important;
    color: #fff;
}

.bg-green-700 {
    background: #115c39 !important;
    color: #fff;
}

.bg-green-800 {
    background: #0d462b !important;
    color: #fff;
}

.bg-green-900 {
    background: #08301e !important;
    color: #fff;
}

.bg-red-100 {
    background: #fee2e2 !important;
}

.bg-red-200 {
    background: #fecaca !important;
}

.bg-red-300 {
    background: #fca5a5 !important;
}

.bg-red-400 {
    background: #f87171 !important;
}

.bg-red-500 {
    background: #dc3545 !important;
    color: #fff;
}

.bg-red-600 {
    background: #b02a37 !important;
    color: #fff;
}

.bg-red-700 {
    background: #8c222d !important;
    color: #fff;
}

.bg-red-800 {
    background: #681a21 !important;
    color: #fff;
}

.bg-red-900 {
    background: #451117 !important;
    color: #fff;
}

.bg-yellow-100 {
    background: #fef9c3 !important;
}

.bg-yellow-200 {
    background: #fef08a !important;
}

.bg-yellow-300 {
    background: #fde047 !important;
}

.bg-yellow-400 {
    background: #facc15 !important;
}

.bg-yellow-500 {
    background: #ffc107 !important;
}

.bg-yellow-600 {
    background: #d39e00 !important;
}

.bg-yellow-700 {
    background: #a87c00 !important;
}

.bg-yellow-800 {
    background: #7d5b00 !important;
}

.bg-yellow-900 {
    background: #523c00 !important;
}

.bg-teal-100 {
    background: #ccfbf1 !important;
}

.bg-teal-200 {
    background: #99f6e4 !important;
}

.bg-teal-300 {
    background: #5eead4 !important;
}

.bg-teal-400 {
    background: #2dd4bf !important;
}

.bg-teal-500 {
    background: #20c997 !important;
    color: #fff;
}

.bg-teal-600 {
    background: #1aa179 !important;
    color: #fff;
}

.bg-teal-700 {
    background: #158463 !important;
    color: #fff;
}

.bg-teal-800 {
    background: #10664d !important;
    color: #fff;
}

.bg-teal-900 {
    background: #0b4837 !important;
    color: #fff;
}

.bg-pink-100 {
    background: #fce7f3 !important;
}

.bg-pink-200 {
    background: #fbcfe8 !important;
}

.bg-pink-300 {
    background: #f9a8d4 !important;
}

.bg-pink-400 {
    background: #f472b6 !important;
}

.bg-pink-500 {
    background: #ff4d6d !important;
    color: #fff;
}

.bg-pink-600 {
    background: #e63956 !important;
    color: #fff;
}

.bg-pink-700 {
    background: #c12d47 !important;
    color: #fff;
}

.bg-pink-800 {
    background: #9b2238 !important;
    color: #fff;
}

.bg-pink-900 {
    background: #741a2a !important;
    color: #fff;
}

.bg-indigo-100 {
    background: #e0e7ff !important;
}

.bg-indigo-200 {
    background: #c7d2fe !important;
}

.bg-indigo-300 {
    background: #a5b4fc !important;
}

.bg-indigo-400 {
    background: #818cf8 !important;
}

.bg-indigo-500 {
    background: #6366f1 !important;
    color: #fff;
}

.bg-indigo-600 {
    background: #4f46e5 !important;
    color: #fff;
}

.bg-indigo-700 {
    background: #4338ca !important;
    color: #fff;
}

.bg-indigo-800 {
    background: #3730a3 !important;
    color: #fff;
}

.bg-indigo-900 {
    background: #312e81 !important;
    color: #fff;
}

.bg-cyan-100 {
    background: #cffafe !important;
}

.bg-cyan-200 {
    background: #a5f3fc !important;
}

.bg-cyan-300 {
    background: #67e8f9 !important;
}

.bg-cyan-400 {
    background: #22d3ee !important;
}

.bg-cyan-500 {
    background: #0dcaf0 !important;
}

.bg-cyan-600 {
    background: #0891b2 !important;
    color: #fff;
}

.bg-cyan-700 {
    background: #0e7490 !important;
    color: #fff;
}

.bg-cyan-800 {
    background: #155e75 !important;
    color: #fff;
}

.bg-cyan-900 {
    background: #164e63 !important;
    color: #fff;
}

.bg-lime-100 {
    background: #ecfccb !important;
}

.bg-lime-200 {
    background: #d9f99d !important;
}

.bg-lime-300 {
    background: #bef264 !important;
}

.bg-lime-400 {
    background: #a3e635 !important;
}

.bg-lime-500 {
    background: #84cc16 !important;
    color: #fff;
}

.bg-lime-600 {
    background: #65a30d !important;
    color: #fff;
}

.bg-lime-700 {
    background: #4d7c0f !important;
    color: #fff;
}

.bg-lime-800 {
    background: #3f6212 !important;
    color: #fff;
}

.bg-lime-900 {
    background: #365314 !important;
    color: #fff;
}

.bg-gray-100 {
    background: #f3f4f6 !important;
}

.bg-gray-200 {
    background: #e5e7eb !important;
}

.bg-gray-300 {
    background: #d1d5db !important;
}

.bg-gray-400 {
    background: #9ca3af !important;
}

.bg-gray-500 {
    background: #6b7280 !important;
    color: #fff;
}

.bg-gray-600 {
    background: #4b5563 !important;
    color: #fff;
}

.bg-gray-700 {
    background: #374151 !important;
    color: #fff;
}

.bg-gray-800 {
    background: #1f2937 !important;
    color: #fff;
}

.bg-gray-900 {
    background: #111827 !important;
    color: #fff;
}

/* #endregion */