* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* home */
:root {
  --bg: #fbf8f3;
  --bg2: #f4eee6;
  --text: #2b2b2b;
  --muted: #6e6a65;
  --line: rgba(43, 43, 43, 0.12);
  --brand: #c79a6d;
  --brand2: #e8c7a6;
  --white: #ffffff;

  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);

  --container: 1120px;
}

body {
  font-family: "Hachi Maru Pop", cursive;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

/* Layout */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: grid;
  gap: 2px;
}
.brand-logo {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--brand);
}
.brand-tagline {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-link:hover {
  background: rgba(199, 154, 109, 0.14);
  color: var(--text);
}
.nav-link.is-active {
  background: rgba(199, 154, 109, 0.22);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  opacity: 0.8;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}
.mobile-link {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
}
.mobile-link:hover {
  background: rgba(199, 154, 109, 0.12);
  color: var(--text);
}
.mobile-link.is-active {
  color: var(--text);
  font-weight: 600;
}

/* KV */
.kv {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.kv-media {
  position: relative;
  height: clamp(360px, 60vh, 640px);
}
.kv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-overlay {
  position: absolute;
  inset: 0;
}

.kv-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 0;
}

.kv-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-content: center;
}
.kv-lead {
  margin: 0;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-content: center;
}

.kv-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn.primary {
  background: rgba(199, 154, 109, 0.92);
  border-color: rgba(199, 154, 109, 0.55);
  color: #fff;
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.75);
}

/* Sections */
.section {
  padding: 56px 0;
}
.section.alt {
  background: var(--bg2);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.section-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.02em;
}
.section-sub {
  margin: 0;
  color: var(--muted);
}

/* News cards */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.card-meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
}
.card-title {
  margin: 0 0 8px;
  font-size: 16px;
}
.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Items CTA */
.items-cta {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-items: start;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.items-text {
  margin: 0;
  color: var(--muted);
}

/* Mini grid */
.mini-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mini {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.mini-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(199, 154, 109, 0.16),
    rgba(232, 199, 166, 0.24)
  );
  border: 1px dashed rgba(199, 154, 109, 0.35);
}
.mini-name {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* SNS */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sns-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sns-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.sns-name {
  font-weight: 700;
}
.sns-desc {
  color: var(--muted);
  font-size: 13px;
}
.sns-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: rgba(251, 248, 243, 0.95);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footer-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .card-list {
    grid-template-columns: 1fr;
  }
  .sns-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .mobile-nav.is-open {
    display: block;
  }
  .kv-content {
    align-content: end;
    padding-bottom: 22px;
  }
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  /* position: sticky; */
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.header-content {
  text-align: center;
  margin-bottom: 15px;
}

.brand-name {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #d4a574;
  margin-bottom: 5px;
}

.tagline {
  font-size: 13px;
  color: #9a8a7e;
  letter-spacing: 2px;
}

.search-filter {
  margin-top: 15px;
  position: static;
}

input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e8e0d8;
  border-radius: 25px;
  font-size: 14px;
  background: #fefdfb;
  transition: all 0.3s;
}

#earchInput {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e8e0d8;
  border-radius: 25px;
  font-size: 14px;
  background: #fefdfb;
  transition: all 0.3s;
}

#searchInput:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.tag-btn {
  padding: 8px 16px;
  border: 1px solid #e8e0d8;
  background: white;
  border-radius: 20px;
  font-size: 12px;
  color: #7a6a5e;
  cursor: pointer;
  transition: all 0.3s;
}

.tag-btn:hover {
  background: #f9f6f3;
  border-color: #d4a574;
}

.tag-btn.active {
  background: #d4a574;
  color: white;
  border-color: #d4a574;
}

/* Main */
main {
  padding: 25px 15px;
  max-width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #faf8f6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 12px 5px;
  color: #5a4a42;
}

.product-desc {
  font-size: 11px;
  padding: 0 12px 12px;
  color: #9a8a7e;
  line-height: 1.5;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  backdrop-filter: blur(5px);
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1 !important;
  }
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1 !important;
  }
}

/* ========================================
   Modal Close Button Animation
   ======================================== */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--text);
}

.close-btn:hover {
  background: var(--white);
  transform: rotate(90deg) scale(1.1);
}

.close-btn:active {
  transform: rotate(90deg) scale(0.95);
}

/* Modal Unravel Animation */
.modal.unraveling .modal-content {
  animation: unravelModal 0.6s ease-out forwards;
}

@keyframes unravelModal {
  0% {
    opacity: 1 !important;
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(0.98) rotate(2deg);
  }
  40% {
    transform: scale(0.95) rotate(-3deg);
    opacity: 0.9;
  }
  60% {
    transform: scale(0.85) rotate(5deg);
    opacity: 0.6;
  }
  80% {
    transform: scale(0.6) rotate(-10deg) translateY(20px);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.3) rotate(180deg) translateY(50px);
    opacity: 0;
  }
}

/* Unravel Effect - Content dissolves */
.modal.unraveling .modal-body {
  animation: dissolveContent 0.5s ease-out forwards;
}

@keyframes dissolveContent {
  0% {
    opacity: 1 !important;
    filter: blur(0px);
  }
  50% {
    opacity: 0.5;
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
  }
}

/* Thread effect on close button */
.close-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--brand);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.close-btn:hover::before {
  opacity: 0.3;
  transform: scale(1.2);
}

.modal.unraveling .close-btn::before {
  animation: threadPulse 0.6s ease-out;
}

@keyframes threadPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(2);
  }
}

.modal-body {
  padding: 20px;
}

.modal-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
  background: #faf8f6;
  margin-bottom: 20px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info h2 {
  font-size: 22px;
  color: #5a4a42;
  margin-bottom: 12px;
}

.modal-info p {
  font-size: 14px;
  color: #7a6a5e;
  line-height: 1.8;
  margin-bottom: 15px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-tag {
  padding: 6px 12px;
  background: #f9f6f3;
  border-radius: 15px;
  font-size: 11px;
  color: #7a6a5e;
}

.modal-gallery {
  border-top: 1px solid #e8e0d8;
  padding-top: 15px;
}

.gallery-note {
  font-size: 12px;
  color: #b8a89e;
  text-align: center;
  font-style: italic;
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 15px;
  text-align: center;
  margin-top: 40px;
}

.footer-content .brand-name {
  font-size: 24px;
  color: #d4a574;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 13px;
  color: #9a8a7e;
  margin-bottom: 15px;
}

.copyright {
  font-size: 11px;
  color: #b8a89e;
}

/* Responsive */
@media (max-width: 400px) {
  .products-grid {
    gap: 12px;
  }

  .brand-name {
    font-size: 28px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-desc {
    font-size: 10px;
  }
}

/* ====================================
   News & SNS Page Specific Styles
   ==================================== */

/* Page Hero */
.page-hero {
  padding: 40px 0 28px;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}

.page-head {
  display: grid;
  gap: 8px;
  text-align: center;
}

.page-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.02em;
  color: var(--brand);
}

.page-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* News Filter */
.news-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Hachi Maru Pop", cursive;
}

.filter-btn:hover {
  background: var(--bg2);
  border-color: var(--brand2);
  color: var(--text);
}

.filter-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* News List */
.news-list {
  display: grid;
  gap: 20px;
}

.news-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 13px;
  color: var(--muted);
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(199, 154, 109, 0.12);
  border-radius: 999px;
  font-size: 12px;
  color: var(--brand);
}

.news-title {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.news-content {
  display: grid;
  gap: 12px;
}

.news-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Hachi Maru Pop", cursive;
}

.page-btn:hover {
  background: var(--bg2);
  border-color: var(--brand2);
}

.page-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.page-dots {
  color: var(--muted);
  padding: 0 4px;
}

/* SNS Page Styles */
.sns-intro {
  margin-bottom: 32px;
  text-align: center;
}

.sns-intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.sns-cards-large {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.sns-card-large {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
  align-items: center;
}

.sns-card-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sns-card-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border-radius: var(--radius);
  color: var(--brand);
}

.sns-card-info {
  flex: 1;
  display: grid;
  gap: 8px;
}

.sns-card-name {
  margin: 0;
  font-size: 22px;
  color: var(--text);
}

.sns-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.sns-card-handle {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
}

/* SNS Note Box */
.sns-note-box {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sns-note-title {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--text);
}

.sns-note-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.sns-note-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* SNS Feed Placeholder */
.sns-feed-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.feed-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.feed-platform {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}

.feed-content {
  margin-bottom: 10px;
}

.feed-content p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.feed-date {
  font-size: 11px;
  color: var(--muted);
}

.sns-embed-note {
  margin: 0;
  padding: 16px;
  background: rgba(199, 154, 109, 0.08);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

/* Contact Box */
.contact-box {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.contact-title {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--brand);
}

.contact-text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
}

.section-actions {
  margin-top: 24px;
  text-align: center;
}

/* ====================================
   Responsive for News & SNS Pages
   ==================================== */
@media (max-width: 960px) {
  .sns-feed-placeholder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sns-card-large {
    flex-direction: column;
    text-align: center;
  }

  .news-item {
    padding: 18px;
  }

  .news-title {
    font-size: 18px;
  }

  .page-hero {
    padding: 28px 0 20px;
  }

  .contact-box {
    padding: 24px 18px;
  }
}

/* ========================================
   Mobile Responsive Improvements
   ======================================== */

/* Search Filter Wrapper - コンテンツ幅に統一 */
.search-filter-wrapper {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  position: static;
}

.search-filter {
  position: static !important;
  display: grid;
  gap: 12px;
}

/* Hamburger Menu - モバイル対応強化 */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover {
    background: rgba(199, 154, 109, 0.1);
  }

  .nav-toggle:active {
    transform: scale(0.95);
  }

  /* Hamburger icon animation */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(10px);
  }

  .mobile-nav[aria-hidden="false"] {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
  }

  .mobile-link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    margin: 0 16px;
  }

  /* Brand smaller on mobile */
  .brand-logo {
    font-size: 16px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  /* KV adjustments for mobile */
  .kv-media {
    height: clamp(280px, 50vh, 400px);
  }

  .kv-title {
    font-size: clamp(22px, 6vw, 36px);
  }

  .kv-lead {
    font-size: 14px;
    padding: 0 16px;
    text-align: center;
  }

  .kv-cta {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .kv-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Tablet adjustments (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* Mobile - Products Grid */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .product-card {
    padding: 10px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-desc {
    font-size: 11px;
  }

  /* Search filter mobile optimization */
  .search-filter {
    gap: 10px;
  }

  #searchInput {
    font-size: 14px;
    height: 40px;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag-btn {
    font-size: 12px;
    padding: 6px 12px;
    height: auto;
  }
}

/* Extra small devices (less than 375px) */
@media (max-width: 374px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: calc(100% - 24px);
  }

  .kv-lead br {
    display: none;
  }

  .section-title {
    font-size: 20px;
  }

  .btn {
    font-size: 13px;
    height: 40px;
    padding: 0 14px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-link,
  .mobile-link,
  .tag-btn,
  .filter-btn,
  .product-card {
    -webkit-tap-highlight-color: rgba(199, 154, 109, 0.2);
  }

  .btn:active,
  .tag-btn:active,
  .filter-btn:active {
    transform: scale(0.97);
  }
}

/* SNS Grid - Mobile optimization */
@media (max-width: 768px) {
  .sns-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sns-card {
    padding: 20px;
  }

  .sns-name {
    font-size: 18px;
  }

  .sns-desc {
    font-size: 13px;
  }

  .sns-handle {
    font-size: 11px;
  }
}

/* News List - Mobile optimization */
@media (max-width: 768px) {
  .news-item {
    padding: 16px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-date {
    font-size: 12px;
  }

  .news-category {
    font-size: 11px;
  }

  .news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* Modal - Mobile optimization */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20px auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-image {
    width: 100%;
    max-height: 300px;
  }

  .modal-info {
    width: 100%;
    padding: 16px;
  }

  #modalTitle {
    font-size: 18px;
  }

  #modalDescription {
    font-size: 13px;
  }
}

/* Footer - Mobile optimization */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-link,
  .mobile-link,
  .btn {
    border-width: 2px;
  }

  .site-header {
    border-bottom-width: 2px;
  }
}

/* SNS handle styling */
.sns-handle {
  display: block;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
  margin-top: 4px;
}

/* SNS feed placeholder */
.sns-feed-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
}

.feed-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Performance optimizations */
.kv-media img,
.product-image img,
.modal-image img {
  will-change: transform;
}

/* Print styles */
@media print {
  .site-header,
  .nav-toggle,
  .mobile-nav,
  .search-filter-wrapper,
  .kv-cta,
  .section-actions,
  .modal,
  .site-footer {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ========================================
   News Single Page Styles
   ======================================== */

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--brand);
}

.breadcrumb-separator {
  color: var(--muted);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text);
}

/* Article Container */
.news-single {
  padding: 48px 0;
  animation: fadeInArticle 0.6s ease-out;
}

@keyframes fadeInArticle {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.container-article {
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
}

/* Article Header */
.article-header {
  margin-bottom: 32px;
  text-align: center;
  animation: slideInDown 0.6s ease-out 0.2s both;
  border-radius: 30px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.article-date {
  font-size: 14px;
  color: var(--muted);
}

.article-category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  animation: bounceIn 0.6s ease-out 0.4s both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1 !important;
    transform: scale(1);
  }
}

.category-notice {
  background: rgba(199, 154, 109, 0.12);
  color: var(--brand);
}

.category-new {
  background: rgba(232, 107, 137, 0.12);
  color: #e86b89;
}

.category-event {
  background: rgba(108, 167, 224, 0.12);
  color: #6ca7e0;
}

.article-title {
  margin: 0;
  font-size: clamp(24px, 5vw, 36px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text);
}

/* Article Media */
.article-media {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: scaleIn 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1 !important;
    transform: scale(1);
  }
}

.article-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.article-media:hover .article-image {
  transform: scale(1.03);
}

.article-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* Article Content */
.article-content {
  margin-bottom: 40px;
  animation: fadeInContent 0.8s ease-out 0.5s both;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.article-content p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.article-content h2 {
  margin: 48px 0 20px;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand2);
  position: relative;
}

.article-content h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brand);
}

.article-content h3 {
  margin: 32px 0 16px;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 28px;
}

.article-content li {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.article-content a {
  color: var(--brand);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.article-content a:hover {
  color: var(--brand2);
}

.article-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--bg2);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}

/* Article Tags */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  animation: slideInLeft 0.6s ease-out 0.7s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1 !important;
    transform: translateX(0);
  }
}

.tag-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.article-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.2s ease;
}

.article-tag:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* Article Footer / Share */
.article-footer {
  margin-bottom: 48px;
}

.article-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.share-label {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: popIn 0.4s ease-out both;
}

.share-btn:nth-child(1) {
  animation-delay: 0.9s;
}

.share-btn:nth-child(2) {
  animation-delay: 1s;
}

.share-btn:nth-child(3) {
  animation-delay: 1.1s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1 !important;
    transform: scale(1) rotate(0deg);
  }
}

.share-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-facebook {
  background: #1877f2;
  color: white;
}

.share-line {
  background: #00b900;
  color: white;
}

/* Related Posts */
.related-posts {
  background: var(--bg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.related-card {
  display: grid;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  animation: fadeInStagger 0.6s ease-out both;
}

.related-card:nth-child(1) {
  animation-delay: 0.1s;
}

.related-card:nth-child(2) {
  animation-delay: 0.2s;
}

.related-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.related-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg2);
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.1) rotate(2deg);
}

.related-info {
  padding: 16px;
}

.related-date {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.related-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   Mobile Responsive (768px and below)
   ======================================== */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 16px 0;
  }

  .breadcrumb-nav {
    font-size: 12px;
  }

  .news-single {
    padding: 32px 0;
  }

  .container-article {
    width: calc(100% - 24px);
  }

  .article-header {
    margin-bottom: 24px;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .article-media {
    margin-bottom: 28px;
    border-radius: var(--radius);
  }

  .article-content {
    margin-bottom: 32px;
  }

  .article-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .article-content h2 {
    font-size: 20px;
    margin: 36px 0 16px;
  }

  .article-content h3 {
    font-size: 18px;
    margin: 28px 0 14px;
  }

  .article-content ul,
  .article-content ol {
    padding-left: 24px;
  }

  .article-content li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .article-tags {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .article-share {
    padding: 20px 16px;
  }

  .share-buttons {
    gap: 10px;
  }

  .share-btn {
    width: 40px;
    height: 40px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-info {
    padding: 14px;
  }

  .related-title {
    font-size: 14px;
  }
}

/* ========================================
   Extra Small (374px and below)
   ======================================== */
@media (max-width: 374px) {
  .container-article {
    width: calc(100% - 20px);
  }

  .article-content p,
  .article-content li {
    font-size: 14px;
  }

  .article-content h2 {
    font-size: 18px;
  }

  .share-buttons {
    gap: 8px;
  }

  .share-btn {
    width: 38px;
    height: 38px;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .breadcrumb,
  .article-tags,
  .article-share,
  .related-posts {
    display: none;
  }

  .article-content {
    font-size: 12pt;
    line-height: 1.6;
  }

  .article-content h2 {
    page-break-after: avoid;
  }

  .article-media {
    page-break-inside: avoid;
  }
}
/* ==========================================================================
   Product Preview Grid (Homepage Item line up section)
   ========================================================================== */

.products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.product-preview-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-preview-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-preview-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg2);
}

.product-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-preview-item:hover .product-preview-image img {
  transform: scale(1.05);
}

.product-preview-name {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: var(--text);
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .product-preview-name {
    font-size: 14px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .products-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Items CTA Button adjustment */
.items-cta {
  text-align: center;
  margin-top: 16px;
}

/* ==========================================================================
   Mobile Navigation Fix
   ========================================================================== */

/* ハンバーガーボタン */
.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(199, 154, 109, 0.1);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* ハンバーガーアイコンアニメーション（×に変化） */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* モバイルナビゲーション */
.mobile-nav {
  display: none !important;
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
  background: rgba(251, 248, 243, 0.98);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* モバイルナビゲーションが開いている状態 */
.mobile-nav.active {
  display: flex !important;
  display: flex;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 16px;
  border-radius: 8px;
  margin: 0 8px;
  transition: all 0.2s ease;
}

.mobile-link:hover {
  background: rgba(199, 154, 109, 0.12);
  color: var(--text);
}

.mobile-link.is-active {
  color: var(--text);
  font-weight: 600;
  background: rgba(199, 154, 109, 0.08);
}

/* タブレット・スマホで表示 */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .nav-toggle {
    display: inline-flex;
  }
}

/* アニメーション */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* =========================================
   Mobile Navigation Critical Fix
   ========================================= */
.mobile-nav {
  display: none !important;
}

.mobile-nav.active {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  .nav {
    display: none !important;
  }
  
  .nav-toggle {
    display: inline-flex !important;
  }
}

/* =========================================
   Product Archive Search & Filter Design Fix
   ========================================= */

/* 検索・フィルターセクション全体を中央配置 */
.products-archive .search-filter-wrapper {
  background: transparent;
  border-bottom: none;
  padding: 32px 0;
  text-align: center;
}

/* 検索ボックス */
.products-archive #productSearch {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 24px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 15px;
  background: var(--white);
  transition: all 0.3s ease;
  font-family: "Hachi Maru Pop", cursive;
  display: block;
}

.products-archive #productSearch:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(199, 154, 109, 0.1);
}

.products-archive #productSearch::placeholder {
  color: #b8b4b0;
}

/* フィルターボタン群を中央配置 */
.products-archive .filter-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* フィルターボタン */
.products-archive .filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Hachi Maru Pop", cursive;
  white-space: nowrap;
}

.products-archive .filter-btn:hover {
  background: var(--bg2);
  border-color: var(--brand2);
  color: var(--text);
  transform: translateY(-2px);
}

.products-archive .filter-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .products-archive .search-filter-wrapper {
    padding: 24px 16px;
  }

  .products-archive #productSearch {
    font-size: 14px;
    padding: 12px 20px;
  }

  .products-archive .filter-tags {
    gap: 8px;
  }

  .products-archive .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
