/* HAPII Coffee - 最小限CSS（Tailwind併用版） */

/* ヘッダー基本スタイル */
.header-fixed {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #000; /* 黒背景 */
}

/* ヘッダー内テキスト色調整 */
.header-fixed a {
    color: #fff !important;
}
.header-fixed a:hover {
    color: #ffd700 !important; /* ゴールドホバー */
}
.header-fixed .text-gray-700 { /* ハンバーガー */
    color: #fff !important;
}

/* モバイルメニュー開閉（チェックボックス方式） */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
}

/* 初期（モバイル） */
.tools-desktop-only {
    display: none;
}

/* 960px以上（PC） */
@media (min-width: 960px) {
    .tools-desktop-only {
        display: flex !important;
    }
}

/* アイコンサイズ */
.icon, .icon2, .icon-lg {
    line-height: 1;
}
.icon { font-size: 2rem; }
.icon2 { font-size: 1rem; }
.icon-lg { font-size: 1.5rem; }

/* メニューテキスト調整 */
.mentop {
    font-weight: bolder;
    font-size: 18px;
    line-height: 1rem;
}
/* ==========================
   960pxブレークポイント統一
========================== */

/* 初期（モバイル） */
.desktop-menu {
    display: none;
}
.hamburger {
    display: block;
}

/* 960px以上 */
@media (min-width: 960px) {
    .desktop-menu {
        display: flex !important;
    }
    .hamburger {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

/* ハンバーガーメニュー開閉 */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
}
/* ==========================
   PC右メニュー 強制表示
========================== */

/* 初期は非表示 */
.pc-tools {
    display: none;
}

/* 960px以上は必ず表示 */
@media (min-width: 960px) {
    .pc-tools {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.mobile-menu a {
  transition: color .2s ease, transform .2s ease;
}
.mobile-menu a:hover {
  transform: translateX(4px);
}
@keyframes cart-pop {
  0%   { transform: scale(0.6); opacity: 0.5; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); }
}

.cart-pop {
  animation: cart-pop 0.4s ease-out;
}

.mb-3 {
  display: flex;
  flex-wrap: wrap;   /* スマホで折り返し */
  gap: 10px;         /* 画像の間隔 */
  align-items: center;
}

.mb-3 img {
  height: 30px;      /* サイズ調整（お好みで） */
  width: auto;
  display: block;
}