/*
Theme Name: Club Akino
Theme URI: https://clubakino.com
Description: Custom child theme for Karaoke bar & lounge 秋乃
Author: WATAGE Dev
Author URI: https://reiyamori.github.io/watage-portfolio/
Template: kadence
Version: 1.0.0
Text Domain: clubakino
*/

/* ========================================
   Club Akino Custom Styles
   Color: Dark × Gold / Japanese Modern
   ======================================== */

:root {
  --akino-black: #0f0d0a;
  --akino-dark: #1a1612;
  --akino-gold: #b8975a;
  --akino-gold-light: #c9a96a;
  --akino-gold-pale: #e8d5b0;
  --akino-cream: #f5f0e8;
  --akino-white: #fafaf8;
  --akino-gray: #777;
  --akino-text: #d4ccc0;
  /* Override Kadence global palette */
  --global-palette1: #b8975a;
  --global-palette2: #c9a96a;
  --global-palette3: #d4ccc0;
  --global-palette4: #d4ccc0;
  --global-palette5: #777;
  --global-palette7: #0f0d0a;
  --global-palette8: #1a1612;
  --global-palette9: #0f0d0a;
  --global-palette-btn-bg: #b8975a;
  --global-palette-btn: #0f0d0a;
  --global-palette-btn-hover-bg: #c9a96a;
  --global-palette-btn-hover: #0f0d0a;
}

/* Global */
body,
body.flavor-flavor,
.site {
  background-color: var(--akino-black) !important;
  color: var(--akino-text) !important;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
}

.content-bg, .site-container, .site-inner {
  background: transparent !important;
}

.entry-content-wrap, .entry.content-bg {
  background: transparent !important;
}

/* Hide Kadence default header */
#masthead {
  display: none !important;
}

/* Custom header - logo center top, nav center bottom */
.akino-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px 16px;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}

.akino-header.scrolled {
  background: rgba(15, 13, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 40px 12px;
}

/* Header top row: [IG] logo [cart] */
.akino-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}

.akino-header.scrolled .akino-header-top {
  margin-bottom: 8px;
}

.akino-header-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.akino-header-left {
  left: 0;
}

.akino-header-right {
  right: 0;
}

.akino-header-icon {
  color: rgba(184, 151, 90, 0.45);
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.akino-header-icon:hover {
  color: rgba(184, 151, 90, 1);
}

.akino-header-cart {
  display: inline-flex;
  align-items: center;
}

.akino-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--akino-gold);
  color: var(--akino-black);
  font-size: 9px;
  font-weight: 600;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.akino-header-logo img {
  height: 50px;
  filter: invert(1) brightness(0.75);
  transition: height 0.3s ease;
}

.akino-header.scrolled .akino-header-logo img {
  height: 34px;
}

.akino-header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.akino-header-nav a {
  color: rgba(184, 151, 90, 0.7);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-decoration: none;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  transition: color 0.3s ease;
}

.akino-header-nav a:hover {
  color: rgba(184, 151, 90, 1);
}

/* Mobile header */
@media (max-width: 768px) {
  .akino-header {
    padding: 10px 16px !important;
    flex-direction: column;
    background: rgba(15, 13, 10, 0.97) !important;
  }
  .akino-header-top {
    margin-bottom: 0 !important;
    width: 100%;
  }
  .akino-header-logo img {
    height: 32px !important;
  }
  .akino-header-left {
    display: none !important;
  }
  .akino-header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .akino-header-icon svg {
    width: 14px;
    height: 14px;
  }
  .akino-cart-count {
    width: 13px;
    height: 13px;
    font-size: 8px;
    top: -4px;
    right: -6px;
  }
  .akino-header-mobile-toggle {
    display: block !important;
    color: rgba(184, 151, 90, 0.7);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }
  .akino-header-nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 8px;
  }
  .akino-header-nav.show {
    display: flex !important;
  }
  .akino-header-nav a {
    padding: 10px 0;
    font-size: 10px;
    letter-spacing: 0.3em;
    border-bottom: 1px solid rgba(184, 151, 90, 0.08);
    width: 100%;
    text-align: center;
  }
  .akino-header-nav a:last-child {
    border-bottom: none;
  }
}

@media (min-width: 769px) {
  .akino-header-mobile-toggle {
    display: none !important;
  }
  .akino-floating-cart {
    display: none !important;
  }
}

/* Mobile floating cart button */
.akino-floating-cart {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--akino-gold);
  color: var(--akino-black);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.akino-floating-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.akino-floating-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .akino-floating-cart {
    display: flex;
  }
  .akino-header-cart {
    display: none !important;
  }
}

/* Hero */
.akino-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.akino-hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg) center/cover no-repeat;
  z-index: 0;
}

.akino-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,10,0.4) 0%, rgba(20,16,10,0.65) 100%);
  z-index: 1;
}

.akino-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.akino-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--akino-gold-light);
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.akino-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  line-height: 2.2;
  text-shadow: 0 1px 15px rgba(0,0,0,0.5);
  font-weight: 300;
}

/* Section */
.akino-section {
  padding: 140px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.akino-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--akino-gold);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 400;
}

.akino-section-heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--akino-gold-light);
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
  font-weight: 400;
}

.akino-section-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--akino-gold);
  margin: 24px auto 0;
  opacity: 0.6;
}

/* Full-width photo divider (loungebona style) */
.akino-photo-divider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.akino-photo-divider::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg) center/cover no-repeat;
  z-index: -1;
}

@media (max-width: 768px) {
  .akino-photo-divider {
    height: 50vh;
    min-height: 300px;
  }
}

/* Gallery Grid */
.akino-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.akino-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.akino-gallery img:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .akino-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .akino-hero {
    height: 80vh;
    min-height: 500px;
  }

  .akino-hero h1 img {
    height: 100px !important;
  }

  .akino-section {
    padding: 80px 16px;
  }

  .akino-section-heading {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .akino-about-text {
    font-size: 13px;
    line-height: 2.2;
  }

  .akino-intro-row {
    flex-direction: column !important;
    text-align: center;
    gap: 24px !important;
  }

  .akino-intro-row img {
    width: 200px !important;
    margin: 0 auto;
  }

  .akino-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .akino-product-card {
    padding: 20px 12px;
  }

  .akino-product-card img {
    height: 160px;
    width: 100%;
    object-fit: contain;
    padding: 10px;
  }

  .akino-product-card h3 {
    font-size: 13px;
  }

  .akino-news-item {
    flex-direction: column;
    gap: 8px;
  }

  .akino-access iframe {
    height: 220px !important;
  }

  .akino-btn {
    padding: 12px 30px;
    font-size: 12px;
  }
}

/* About text */
.akino-about-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 2.6;
  color: #d4ccc0;
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* Access */
.akino-access {
  text-align: center;
  font-size: 15px;
  line-height: 2.2;
  color: #e8e0d4;
}

.akino-access a {
  color: var(--akino-gold);
  text-decoration: none;
}

/* CTA Button */
.akino-btn {
  display: inline-block;
  padding: 13px 44px;
  border: 1px solid rgba(196, 162, 101, 0.5);
  color: var(--akino-gold);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 400;
}

.akino-btn:hover {
  background: var(--akino-gold);
  color: var(--akino-black);
  border-color: var(--akino-gold);
}

/* Footer — minimal single line */
#colophon {
  background: var(--akino-black) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-top-footer-wrap,
.site-middle-footer-wrap,
.site-top-footer-inner-wrap,
.site-middle-footer-inner-wrap {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
}

.site-bottom-footer-wrap {
  padding: 0 !important;
}

.site-bottom-footer-wrap .site-footer-row-container-inner {
  border-top: 1px solid rgba(184, 151, 90, 0.08) !important;
}

.site-bottom-footer-inner-wrap {
  padding: 18px 0 !important;
  min-height: 0 !important;
  grid-column-gap: 0 !important;
}

.site-bottom-footer-inner-wrap .widget {
  margin: 0 !important;
}

#colophon .footer-html,
#colophon .footer-html * {
  display: inline !important;
  font-size: 10px !important;
  letter-spacing: 0.08em;
  color: rgba(184, 151, 90, 0.35) !important;
}

/* Custom footer on HOME */
.akino-custom-footer {
  background: var(--akino-black);
  border-top: 1px solid rgba(184, 151, 90, 0.08);
  padding: 60px 20px 40px;
  text-align: center;
}

.akino-custom-footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Replace ALL logos with Akino */
.custom-logo {
  content: url('assets/img/logo-akino.svg') !important;
  filter: invert(1) brightness(0.7) !important;
  max-height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* News list */
.akino-news-list {
  max-width: 700px;
  margin: 0 auto;
}

.akino-news-item {
  display: block;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.1);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.akino-news-item:hover {
  background: rgba(184, 151, 90, 0.05);
}

.akino-news-item:hover h3 {
  color: var(--akino-gold-light);
}

/* Pagination */
.akino-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  font-size: 12px;
  color: var(--akino-gold);
  border: 1px solid rgba(184, 151, 90, 0.2);
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.akino-pagination .page-numbers.current {
  background: var(--akino-gold);
  color: var(--akino-black);
  border-color: var(--akino-gold);
}

.akino-pagination .page-numbers:hover {
  border-color: var(--akino-gold);
}

.akino-news-date {
  color: var(--akino-gray);
  white-space: nowrap;
  min-width: 100px;
}

.akino-news-title a {
  color: var(--akino-text);
  text-decoration: none;
  transition: color 0.3s;
}

.akino-news-title a:hover {
  color: var(--akino-gold);
}

/* Champagne cards */
.akino-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.akino-product-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 162, 101, 0.2);
  transition: border-color 0.3s, background 0.3s;
}

.akino-product-card:hover {
  border-color: var(--akino-gold);
  background: rgba(196, 162, 101, 0.08);
}

.akino-product-card img {
  height: 250px;
  width: 100%;
  margin: 0 auto 20px;
  object-fit: contain;
  background: transparent;
  padding: 16px;
}

.akino-product-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: var(--akino-gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.akino-product-card .price {
  font-size: 15px;
  color: #ccc;
  letter-spacing: 0.05em;
}

/* Contact form */
.akino-form input,
.akino-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196, 162, 101, 0.3);
  color: var(--akino-text);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.akino-form textarea {
  background: rgba(255,255,255,0.05) !important;
}

.akino-form input:focus,
.akino-form textarea:focus {
  outline: none;
  border-color: var(--akino-gold);
}

.akino-form button {
  background: var(--akino-gold);
  color: var(--akino-black);
  border: none;
  padding: 14px 50px;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.3s;
}

.akino-form button:hover {
  opacity: 0.85;
}

/* WooCommerce overrides */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--akino-gold) !important;
  color: var(--akino-black) !important;
  border: none !important;
  border-radius: 0 !important;
  letter-spacing: 0.1em;
  font-size: 13px !important;
  text-align: center !important;
}

.woocommerce .button:hover,
.woocommerce a.button:hover {
  opacity: 0.85;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

.woocommerce table.shop_table {
  border-color: rgba(196, 162, 101, 0.2) !important;
}

.woocommerce table.shop_table th {
  color: var(--akino-gold) !important;
}

.woocommerce table.shop_table td {
  color: #e8e0d4 !important;
}

.woocommerce .quantity .qty {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(196, 162, 101, 0.3) !important;
  color: #e8e0d4 !important;
}

.woocommerce-checkout #payment {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(196, 162, 101, 0.2) !important;
}

/* ===== Checkout page ===== */

/* All input fields */
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .input-text,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(184, 151, 90, 0.25) !important;
  color: #e8e0d4 !important;
  border-radius: 0 !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e8e0d4 !important;
  line-height: inherit !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(184, 151, 90, 0.5) transparent transparent transparent !important;
}

/* Headings */
body.woocommerce-checkout h3,
body.woocommerce-checkout #order_review_heading {
  font-family: "Noto Serif JP", serif !important;
  color: var(--akino-gold-light) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(184, 151, 90, 0.1) !important;
}

/* Labels */
body.woocommerce-checkout label {
  color: var(--akino-text) !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
}

body.woocommerce-checkout .required {
  color: var(--akino-gold) !important;
}

/* Order review table */
body.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce .woocommerce-checkout .shop_table,
.woocommerce-checkout .shop_table {
  background: transparent !important;
  border: 1px solid rgba(184, 151, 90, 0.15) !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  color: var(--akino-gold) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  border-color: rgba(184, 151, 90, 0.15) !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  color: #e8e0d4 !important;
  font-size: 14px !important;
  border-color: rgba(184, 151, 90, 0.1) !important;
}

/* Place order button */
body.woocommerce-checkout #place_order,
body .woocommerce #place_order,
body .woocommerce-checkout #payment #place_order,
#place_order {
  background: var(--akino-gold) !important;
  color: var(--akino-black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
  padding: 16px 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  width: 100%;
  font-weight: 500 !important;
}

/* ご注文 heading */
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout h3#order_review_heading {
  font-family: "Noto Serif JP", serif !important;
  color: var(--akino-gold-light) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
}

/* Payment box */
body.woocommerce-checkout #payment {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(184, 151, 90, 0.15) !important;
  border-radius: 0 !important;
}

body.woocommerce-checkout #payment .payment_box {
  background: rgba(184, 151, 90, 0.06) !important;
  color: var(--akino-text) !important;
  font-size: 13px;
}

/* Privacy */
body.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin: 20px 0 !important;
}

/* ========================================
   Legal / Privacy Policy Pages
   ======================================== */
.akino-legal-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: var(--akino-text);
}

.akino-legal-block {
  margin-bottom: 48px;
}

.akino-legal-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--akino-gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.akino-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.akino-legal-table th,
.akino-legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.akino-legal-table th {
  width: 140px;
  color: var(--akino-gold);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.akino-legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.akino-legal-list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.akino-legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--akino-gold);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .akino-legal-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }
  .akino-legal-table td {
    display: block;
    padding-top: 0;
  }
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 10px !important;
  line-height: 1.8 !important;
  margin-bottom: 16px !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: var(--akino-gold) !important;
}

/* Coupon toggle link */
body.woocommerce-checkout .woocommerce-info a {
  color: var(--akino-gold) !important;
}

/* Select2 dropdown */
.select2-dropdown {
  background: var(--akino-dark) !important;
  border-color: rgba(184, 151, 90, 0.3) !important;
}

.select2-results__option {
  color: #e8e0d4 !important;
}

.select2-results__option--highlighted {
  background: rgba(184, 151, 90, 0.15) !important;
  color: var(--akino-gold-light) !important;
}

/* Checkout SP */
@media (max-width: 768px) {
  body.woocommerce-checkout .woocommerce {
    padding: 100px 16px 60px !important;
  }
}

/* WooCommerce notification bar */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: rgba(184, 151, 90, 0.08) !important;
  border-top: none !important;
  border: 1px solid rgba(184, 151, 90, 0.25) !important;
  color: var(--akino-text) !important;
  font-size: 13px;
  padding: 16px 20px !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--akino-gold) !important;
}

.woocommerce-message a.button {
  background: transparent !important;
  color: var(--akino-gold) !important;
  border: 1px solid rgba(184, 151, 90, 0.4) !important;
  padding: 8px 20px !important;
  font-size: 11px !important;
}

/* WooCommerce headings — override Kadence */
.woocommerce-cart h2,
.woocommerce-cart .cart_totals h2,
.woocommerce-cart .entry-content h2,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
body.woocommerce-cart h2,
body.woocommerce-checkout h3 {
  font-family: "Noto Serif JP", serif !important;
  color: var(--akino-gold-light) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 20px !important;
}

/* Kadence page title on WC pages */
body.woocommerce-cart .entry-hero-container-inner,
body.woocommerce-checkout .entry-hero-container-inner,
body.woocommerce-cart .page-hero-section,
body.woocommerce-checkout .page-hero-section {
  display: none !important;
}

/* Cart & Checkout container */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

/* Cart table */
.woocommerce table.shop_table {
  border-color: rgba(184, 151, 90, 0.15) !important;
  border-collapse: collapse !important;
}

.woocommerce table.shop_table th {
  color: var(--akino-gold) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  font-weight: 400 !important;
  padding: 12px 8px !important;
  border-color: rgba(184, 151, 90, 0.15) !important;
}

.woocommerce table.shop_table td {
  color: #e8e0d4 !important;
  font-size: 14px !important;
  padding: 16px 8px !important;
  border-color: rgba(184, 151, 90, 0.1) !important;
  vertical-align: middle !important;
}

/* Cart product image */
.woocommerce-cart .product-thumbnail img {
  background: transparent !important;
  padding: 0 !important;
  max-width: 80px !important;
}

/* Cart totals box */
.woocommerce .cart_totals {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(184, 151, 90, 0.15) !important;
  padding: 24px !important;
}

.woocommerce .cart_totals th,
.woocommerce .cart_totals td {
  color: #e8e0d4 !important;
  border-color: rgba(184, 151, 90, 0.15) !important;
  font-size: 14px !important;
}

/* Checkout button */
.woocommerce .cart_totals .checkout-button,
.woocommerce .wc-proceed-to-checkout a {
  background: var(--akino-gold) !important;
  color: var(--akino-black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  padding: 14px 30px !important;
  display: block !important;
  text-align: center !important;
}

/* Update cart button */
.woocommerce .actions button[name="update_cart"],
body .woocommerce button[name="update_cart"] {
  background: transparent !important;
  color: rgba(184, 151, 90, 0.5) !important;
  border: 1px solid rgba(184, 151, 90, 0.2) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Coupon */
.woocommerce .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
}

.woocommerce .coupon .input-text,
body .woocommerce .coupon .input-text {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(184, 151, 90, 0.3) !important;
  color: var(--akino-text) !important;
  font-size: 12px !important;
  padding: 10px 12px !important;
}

.woocommerce .coupon .button,
body .woocommerce .coupon .button {
  background: transparent !important;
  color: var(--akino-gold) !important;
  border: 1px solid rgba(184, 151, 90, 0.4) !important;
  font-size: 11px !important;
  padding: 10px 20px !important;
  white-space: nowrap;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  line-height: 1 !important;
}

/* Quantity */
.woocommerce .quantity,
body .woocommerce .quantity {
  background: transparent !important;
  border: 1px solid rgba(184, 151, 90, 0.25) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.woocommerce .quantity .qty,
body .woocommerce .quantity .qty {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(184, 151, 90, 0.25) !important;
  border-right: 1px solid rgba(184, 151, 90, 0.25) !important;
  color: #e8e0d4 !important;
  width: 40px !important;
  text-align: center;
}

.woocommerce .quantity .minus,
.woocommerce .quantity .plus,
body .woocommerce .quantity .minus,
body .woocommerce .quantity .plus {
  background: transparent !important;
  border: none !important;
  color: var(--akino-gold) !important;
  box-shadow: none !important;
}

/* Product links in cart */
.woocommerce-cart td.product-name a {
  color: var(--akino-gold-light) !important;
  text-decoration: none !important;
  font-size: 14px;
}

/* Remove button */
.woocommerce a.remove,
body .woocommerce a.remove {
  color: rgba(184, 151, 90, 0.4) !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

body .woocommerce a.remove:hover {
  background: transparent !important;
  color: var(--akino-gold) !important;
}

/* Cart SP layout */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    padding: 100px 16px 60px;
  }

  .woocommerce table.shop_table_responsive tr td {
    text-align: right !important;
  }

  .woocommerce table.shop_table_responsive tr td::before {
    color: var(--akino-gold) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em;
  }

  .woocommerce .cart-collaterals {
    margin-top: 30px;
  }

  .woocommerce .coupon {
    flex-wrap: wrap;
  }
}

/* Page titles for WooCommerce pages */
.woocommerce-page .entry-content {
  padding-top: 40px;
}

/* ===== Single post (個別記事) ===== */
.single .entry-hero-container-inner,
.single .entry-header,
.single .hero-section-overlay {
  background: var(--akino-black) !important;
}

.single .entry-title {
  font-family: "Noto Serif JP", serif !important;
  font-size: clamp(1.3rem, 3vw, 1.8rem) !important;
  color: var(--akino-gold-light) !important;
  letter-spacing: 0.08em;
  font-weight: 400 !important;
}

.single .entry-meta,
.single .entry-meta * {
  color: rgba(184, 151, 90, 0.5) !important;
  font-size: 12px !important;
}

/* Hide author name on single */
.single .entry-author,
.single .posted-by {
  display: none !important;
}

.single .entry-content {
  padding-top: 60px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.4;
  color: #e8e0d4;
}

.single .entry-content p {
  margin-bottom: 1.5em;
}

/* Hide post nav, comments, related on single */
.single .post-navigation,
.single .comments-area,
.single .entry-footer {
  display: none !important;
}

/* Related posts — hide or dark */
.single .entry-related,
.single .kadence-related-posts,
.single .jetpack-related-posts,
.single .related-posts {
  display: none !important;
}

/* Single post backgrounds — kill all white */
.single .content-bg,
.single .site-container,
.single .site-inner,
.single .content-area,
.single .entry-content-wrap,
.single .entry.content-bg,
.single .site-main,
.single .hentry,
.single article,
.single .entry-hero-layout-standard {
  background: var(--akino-black) !important;
}

/* Single post hero area */
.single .entry-hero-container-inner {
  padding: 180px 20px 60px !important;
}

/* Category label on single */
.single .entry-taxonomies a,
.single .entry-taxonomies span {
  color: var(--akino-gold) !important;
  font-size: 10px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase;
}

/* Single post date */
.single .entry-meta time {
  color: rgba(184, 151, 90, 0.5) !important;
  font-size: 12px !important;
}

/* Content area links */
.single .entry-content a {
  color: var(--akino-gold) !important;
}

/* Blockquote */
.single .entry-content blockquote {
  border-left: 2px solid var(--akino-gold) !important;
  padding: 16px 24px !important;
  margin: 24px 0 !important;
  background: rgba(184, 151, 90, 0.05) !important;
  font-style: italic;
}

.single .entry-content blockquote p {
  color: var(--akino-gold-light) !important;
  font-family: "Noto Serif JP", serif;
}

/* Lists */
.single .entry-content ul,
.single .entry-content ol {
  color: #e8e0d4;
  padding-left: 20px;
}

.single .entry-content li {
  margin-bottom: 8px;
}

/* h3 in content */
.single .entry-content h3 {
  font-family: "Noto Serif JP", serif;
  color: var(--akino-gold-light) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  margin: 32px 0 16px !important;
}

/* ===== WooCommerce single product ===== */
.single-product .entry-content-wrap,
.single-product .content-area {
  padding-top: 120px;
  max-width: 900px;
  margin: 0 auto;
}

/* Hide unwanted elements */
.single-product .onsale,
.single-product .woocommerce-product-gallery__trigger,
.single-product .product_meta,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .up-sells,
.single-product .storefront-sorting {
  display: none !important;
}

/* Product title */
.single-product .product_title {
  font-family: "Noto Serif JP", serif !important;
  color: var(--akino-gold-light) !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em;
}

/* Product price */
.single-product .price {
  color: #e8e0d4 !important;
  font-size: 18px !important;
}

.single-product .price del {
  color: var(--akino-gray) !important;
}

.single-product .price ins {
  text-decoration: none !important;
  color: var(--akino-gold-light) !important;
}

/* Product image */
.single-product .woocommerce-product-gallery .wp-post-image {
  background: transparent !important;
  padding: 0;
}

/* Add to cart button */
.single-product .single_add_to_cart_button {
  background: var(--akino-gold) !important;
  color: var(--akino-black) !important;
  border: none !important;
  border-radius: 0 !important;
  letter-spacing: 0.1em;
  padding: 14px 40px !important;
  font-size: 13px !important;
}

/* Quantity */
.single-product .quantity .qty {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(184, 151, 90, 0.3) !important;
  color: #e8e0d4 !important;
}

.single-product .quantity .minus,
.single-product .quantity .plus {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(184, 151, 90, 0.3) !important;
  color: var(--akino-text) !important;
}

/* Product short description */
.single-product .woocommerce-product-details__short-description {
  color: var(--akino-text) !important;
  font-size: 14px;
  line-height: 2;
}

/* Hide default product badges/messages */
.single-product .wc-memberships-member-discount-message,
.single-product .free_shipping_notice,
.single-product .storefront-sticky-add-to-cart {
  display: none !important;
}

/* ===== Champagne grid SP fix ===== */
@media (max-width: 768px) {
  .akino-products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    overflow: hidden;
  }
  .akino-product-card {
    padding: 16px 10px;
  }
  .akino-product-card img {
    height: 140px;
    width: 100%;
    object-fit: contain;
    padding: 8px;
  }
  .akino-product-card h3 {
    font-size: 12px;
  }
  .akino-product-card .price {
    font-size: 13px;
  }
  .akino-product-card .akino-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
}
