* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bright-pink: #FF69B4;
  --hot-pink: #FF1493;
  --bright-navy: #3A5FCD;
  --vivid-blue: #4169E1;
  --ink-black: #222233;
  --rice-white: #FFFEF7;
  --warm-gray: #6B7280;
  --light-pink: #FFB6C1;
  --sky-blue: #87CEEB;
  --deep-blue: #1E90FF;
  --candy-pink: #FFB3D9;
  --ivory: #FFFFF0;
  --ocean-blue: #5B9BD5;
  --pastel-pink: #FFC0E3;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--ink-black);
  background-color: var(--rice-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, opacity;
}

@media (min-width: 969px) {
  .header.header--hidden {
    transform: translateY(-110%);
    opacity: 0;
    box-shadow: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 990;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-drawer {
  position: fixed;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 995;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  box-shadow: none;
}

.mobile-menu-drawer.open {
  max-height: 600px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}


.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 0 16px;
  gap: 0;
}

.mobile-nav-links > li {
  border-bottom: 1px solid #f3f3f3;
}

.mobile-nav-links > li:last-child {
  border-bottom: none;
}

.mobile-nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--ink-black);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-links > li > a:hover {
  color: var(--hot-pink);
  background: #fff5fa;
}

.mobile-nav-links > li > a::after {
  display: none !important;
}

.mobile-tag {
  font-size: 9px;
  font-weight: 700;
  background: #e8f0fe;
  color: #1a56db;
  border-radius: 20px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-full {
  height: 40px;
  width: 180px;
  object-fit: contain;
  border-radius: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin-right: auto;
  margin-left: 48px;
}

.nav-links a {
  text-decoration: none;
  color: var(--warm-gray);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--hot-pink);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--ink-black);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--warm-gray);
  padding: 0;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--ink-black);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1050;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-black);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: #fff0f6;
  color: var(--hot-pink);
}

.nav-dropdown-menu li a::after {
  display: none;
}

.dropdown-tag {
  font-size: 10px;
  font-weight: 700;
  background: #e8f0fe;
  color: #1a56db;
  border-radius: 20px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
  vertical-align: middle;
}

.mobile-nav-links .mobile-sub-links {
  display: none;
  flex-direction: column;
  background: #fafafa;
  overflow: hidden;
}

.mobile-nav-links .mobile-sub-links.open {
  display: flex;
}

.mobile-nav-links .mobile-sub-links li {
  border-bottom: none;
}

.mobile-nav-links .mobile-sub-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links .mobile-sub-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px 13px 40px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-links .mobile-sub-links a::after {
  display: none !important;
}

.mobile-nav-links .mobile-sub-links a:hover {
  color: var(--hot-pink);
  background: #fff5fa;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-black);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-toggle:hover {
  color: var(--hot-pink);
  background: #fff5fa;
}

.mobile-nav-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  color: var(--warm-gray);
  flex-shrink: 0;
}

.mobile-nav-toggle.open svg {
  transform: rotate(180deg);
}

.login-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--ink-black);
  text-decoration: none;
}

.login-icon:hover {
  transform: scale(1.1);
  color: var(--hot-pink);
}

.login-icon svg {
  width: 24px;
  height: 24px;
}

.cart-icon {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--ink-black);
}

.cart-icon:hover {
  transform: scale(1.1);
  color: var(--hot-pink);
}

.cart-icon svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hot-pink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.cta-button {
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(255, 20, 147, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.6);
  background: linear-gradient(135deg, var(--bright-navy), var(--hot-pink));
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line-1 {
  display: block;
  color: var(--ink-black);
}

.title-line-2 {
  display: block;
  color: var(--hot-pink);
}

.handwritten-accent {
  font-family: 'Caveat', cursive;
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink-black);
  position: relative;
  display: inline-block;
}

.handwritten-accent::after {
  display: none;
}

.title-line-3 {
  display: block;
  color: var(--bright-navy);
}

.title-line-3.handwritten-accent {
  font-family: 'Dancing Script', cursive;
  color: var(--bright-navy);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.primary-button {
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  color: white;
  border: 3px solid transparent;
  padding: 17px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--bright-navy), var(--bright-pink));
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.4);
}

.secondary-button {
  background: transparent;
  color: var(--bright-navy);
  border: 3px solid var(--bright-navy);
  padding: 17px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
}

.secondary-button:hover {
  background: linear-gradient(135deg, var(--bright-navy), var(--hot-pink));
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(58, 95, 205, 0.6);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-black);
  line-height: 1.4;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

.hero-mosaic-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
 /* box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(255, 20, 147, 0.1);*/
  aspect-ratio: 4 / 3;
  width: 100%;
}

.hero-mosaic-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.hero-mosaic-main:hover .hero-mosaic-img-main {
  transform: scale(1.04);
}

.hero-mosaic-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-mosaic-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hot-pink);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-mosaic-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-black);
  letter-spacing: 0.3px;
}

/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--bright-pink), var(--light-pink));
  top: -150px;
  right: -150px;
  filter: blur(100px);
  opacity: 0.35;
  animation: pulse-shape 4s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--bright-navy), var(--vivid-blue));
  bottom: -100px;
  left: -100px;
  filter: blur(100px);
  opacity: 0.3;
  animation: pulse-shape 4s ease-in-out infinite 1s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--candy-pink), var(--sky-blue));
  top: 40%;
  left: 40%;
  filter: blur(100px);
  opacity: 0.25;
  animation: pulse-shape 4s ease-in-out infinite 2s;
}

@keyframes pulse-shape {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.35;
  }
}

/* Our Boxes Section */
.seigaiha-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to top right, rgba(0,0,0,0.8) 30%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top right, rgba(0,0,0,0.8) 30%, transparent 80%);
}

.boxes-section {
  padding: 130px 0 48px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.15) 0%, rgba(255, 105, 180, 0.08) 50%, rgba(255, 192, 203, 0.12) 100%);
  position: relative;
  overflow: hidden;
}

.boxes-section::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.35), rgba(255, 182, 193, 0.2), transparent);
  top: 40%;
  left: -250px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: pulse-shape 5s ease-in-out infinite;
}

.boxes-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.25), rgba(135, 206, 235, 0.15), transparent);
  bottom: 5%;
  right: -200px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: pulse-shape 5s ease-in-out infinite 1.5s;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}


.featured-box-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.featured-box-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-main {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.slider-track {
  width: 100%;
  height: 100%;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.slider-img.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  color: var(--bright-navy);
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.slider-thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.slider-thumb:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.slider-thumb.active {
  border-color: var(--primary-blue, #0ea5e9);
  opacity: 1;
}

.featured-box-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-box-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1.2;
  margin-top: 0;
}

.featured-box-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-gray);
  margin: 0;
  letter-spacing: 0.5px;
}

.featured-box-description {
  font-size: 18px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.plan-selector-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-selector-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--hot-pink);
  text-transform: uppercase;
  margin: 0;
}

.plan-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

.plan-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.plan-option:hover {
  border-color: var(--bright-pink);
  transform: translateX(4px);
}

.plan-option.active {
  border: 2.5px solid #E8567A;
  background: linear-gradient(135deg, rgba(232, 86, 122, 0.07), rgba(232, 86, 122, 0.03));
}

.plan-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-duration {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-black);
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.plan-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-black);
}

.plan-save {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge.popular {
  background: var(--hot-pink);
  color: white;
  box-shadow: 0 2px 6px rgba(255, 20, 147, 0.3);
}

.plan-badge.best-value {
  background: var(--hot-pink);
  color: white;
  box-shadow: 0 2px 6px rgba(255, 20, 147, 0.3);
}

.popular-star {
  color: #FFD700;
  margin-right: 2px;
}

.subscribe-section {
  display: flex;
  align-items: center;
  gap: 24px;
}

.subscribe-button {
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  color: white;
  border: none;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(255, 20, 147, 0.2);
}

.subscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
  background: linear-gradient(135deg, #FF5588, #FF0080);
}

.total-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.total-amount {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.total-note {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  max-width: 200px;
}

.plan-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.shipping-note {
  color: #666;
  font-size: 14px;
  margin: 0 0 16px 0;
  text-align: left;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

/* One-Time Boxes Section */
.onetime-boxes-section {
  padding: 80px 0 100px;
  background: var(--rice-white);
  position: relative;
  overflow: hidden;
}

.onetime-boxes-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.12), transparent);
  top: -100px;
  right: -150px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.onetime-boxes-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 95, 205, 0.1), transparent);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.onetime-boxes-header {
  text-align: center;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .onetime-boxes-header {
    margin-bottom: 16px;
  }
}

.onetime-boxes-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.onetime-boxes-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 12px;
  line-height: 1.15;
}

.title-pink {
  color: var(--hot-pink);
  position: relative;
  display: inline-block;
}

.title-pink::after {
  display: none;
}

.onetime-boxes-subtitle {
  font-size: 17px;
  color: var(--warm-gray);
  font-weight: 400;
}

.theme-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.theme-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
 
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

.theme-card-visual-link {
  display: block;
  text-decoration: none;
}

.theme-card-title-link {
  color: inherit;
  text-decoration: none;
}

.theme-card-title-link:hover {
  text-decoration: underline;
}

.theme-card-visual {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.theme-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.theme-card:hover .theme-card-visual img {
  transform: scale(1.08);
}

.theme-card-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.25) 100%);
}

.matcha-tint {
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.25) 100%);
}

.theme-card-label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bright-navy);
  color: white;
  padding: 10px 22px 10px 22px;
  border-radius: 0 0 16px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.matcha-label {
  background: #2d8a2d;
}

.theme-label-text {
  position: relative;
  z-index: 1;
}

.theme-card-price-badge {
  position: absolute;
  bottom: 18px;
  right: 20px;
  background: white;
  color: var(--ink-black);
  font-size: 22px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  line-height: 1;
}

.matcha-price-badge {
  color: #2d8a2d;
}

.theme-card-body {
  padding: 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.theme-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-black);
  line-height: 1.2;
  margin: 0;
}

.theme-card-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
}

.theme-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}

.theme-card-features li {
  font-size: 13px;
  color: var(--ink-black);
  font-weight: 500;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.konbini-theme .theme-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3A5FCD;
}

.matcha-theme .theme-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d8a2d;
}

.theme-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  gap: 8px;
}

.theme-card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.theme-card-price-inline {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1;
  white-space: nowrap;
}

.theme-card-ship {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 400;
}

.theme-cart-btn {
  color: white;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.konbini-cart-btn {
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
}

.konbini-cart-btn:hover {
  background: linear-gradient(135deg, #FF5588, #FF0080);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.matcha-cart-btn {
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
}

.matcha-cart-btn:hover {
  background: linear-gradient(135deg, #FF5588, #FF0080);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

@media (max-width: 768px) {
  .theme-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .onetime-boxes-title {
    font-size: 32px;
  }

  .theme-card-visual {
    height: 240px;
  }
}

/* Why Japan Bites Section */
.why-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, var(--rice-white) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.25), rgba(255, 182, 193, 0.15), transparent);
  top: -250px;
  right: -200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2), rgba(135, 206, 235, 0.12), transparent);
  bottom: -200px;
  left: -150px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-title {
  color: var(--bright-navy);
}

.bites-blue {
  position: relative;
  display: inline-block;
  color: var(--bright-navy);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink-black);
}

.bites-pink {
  position: relative;
  display: inline-block;
  color: var(--ink-black);
}

.bites-pink::after {
  display: none;
}

.section-subtitle {
  font-size: 20px;
  color: var(--warm-gray);
  font-weight: 400;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  display: flex;
  flex-direction: column;
}

.why-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.why-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #222233;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  transform: none;
}

.why-card-description {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 56px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    gap: 0;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .nav-right {
    grid-column: 3;
    justify-self: end;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 38px;
  }

  .featured-box-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slider-main {
    height: 280px;
  }

  .onetime-boxes-section {
    padding: 80px 0;
  }

  .onetime-boxes-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .theme-cards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 0 60px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-mosaic-main {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .hero-mosaic-badge {
    bottom: 14px;
    left: 14px;
    padding: 6px 14px;
  }

  .hero-mosaic-badge-text {
    font-size: 11px;
  }

  .logo {
    font-size: 24px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 18px;
  }


  .featured-box-title {
    font-size: 28px;
  }

  .featured-box-description {
    font-size: 16px;
  }

  .slider-main {
    height: 220px;
  }

  .plan-option {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  .plan-duration {
    font-size: 16px;
  }

  .plan-price {
    font-size: 20px;
  }

  .subscribe-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .subscribe-button {
    width: 100%;
    justify-content: center;
  }

  .box-card-image {
    height: 250px;
  }

  .box-card-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .box-card-price-section {
    align-items: flex-start;
  }

  .add-to-cart-button {
    width: 100%;
  }

}


/* How It Works Section */
.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f2fc 50%, #f4f8ff 100%);
  position: relative;
  overflow: hidden;
}

.process-sakura-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.process-sakura-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.process-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(58, 95, 205, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--hot-pink);
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(58, 95, 205, 0.2));
}

.process-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-description {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--rice-white) 0%, rgba(255, 182, 193, 0.08) 100%);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.testimonials-marquee-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 1248px;
  margin: 0 auto;
}

.testimonials-viewport {
  flex: 1;
  overflow: hidden;
  cursor: default;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.testimonials-track.paused {
  animation-play-state: paused;
}

/* Base card */
.tc {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc:hover {
  transform: translateY(-5px);
}

/* Photo-only card */
.tc-photo {
  width: 260px;
  height: 320px;
  position: relative;
  cursor: pointer;
}

.tc-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tc-photo:hover .tc-photo-img {
  transform: scale(1.05);
}

.tc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 4px;
}

.tc-stars {
  color: #FFD700;
  font-size: 15px;
  letter-spacing: 2px;
}

.tc-name {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

/* Text-only card */
.tc-text {
  width: 300px;
  min-height: 320px;
  background: white;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.tc-text-navy {
  background: var(--bright-navy);
}

.tc-text-navy .tc-quote {
  color: rgba(255,255,255,0.88);
}

.tc-text-navy .tc-quote-mark {
  color: var(--hot-pink);
}

.tc-text-navy .tc-byline-name {
  color: white;
}

.tc-text-navy .tc-byline-tag {
  color: rgba(255,255,255,0.6);
}

.tc-text-navy .tc-stars-bottom {
  color: #FFD700;
}

.tc-quote-mark {
  font-size: 56px;
  line-height: 0.8;
  color: var(--hot-pink);
  font-family: Georgia, serif;
  font-weight: 700;
  flex-shrink: 0;
}

.tc-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--warm-gray);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.tc-byline {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tc-byline-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-black);
}

.tc-byline-tag {
  font-size: 12px;
  color: var(--warm-gray);
}

.tc-stars-bottom {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Arrow buttons */
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bright-navy);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-arrow:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(255, 20, 147, 0.3);
}

/* Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--hot-pink);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 968px) {
  .tc-photo {
    width: 220px;
    height: 280px;
  }

  .tc-text {
    width: 260px;
    min-height: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 60px 0 40px;
  }

  .testimonials-marquee-outer {
    gap: 10px;
    padding: 0 12px;
  }

  .tc-photo {
    width: 200px;
    height: 260px;
  }

  .tc-text {
    width: 240px;
    height: 260px;
    min-height: 260px;
    padding: 22px 20px;
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
  }
}

/* What's Inside the Box Section */
.snack-peek-section {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #fff8f0 0%, #ffeef5 50%, #f0f8ff 100%);
  overflow: hidden;
  position: relative;
}

.snack-peek-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 182, 193, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(255, 218, 185, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(173, 216, 230, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.snack-peek-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .snack-peek-header {
    margin-bottom: 14px;
  }
  .snack-peek-header .section-title {
    white-space: nowrap;
  }
}

.snack-peek-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF69B4;
  background: rgba(255, 105, 180, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.snack-peek-marquee-outer {
  width: 100%;
  overflow: hidden;
}

.snack-peek-viewport {
  width: 100%;
  overflow: hidden;
}

@keyframes snack-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.snack-peek-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: snack-scroll 38s linear infinite;
  padding: 12px 0 24px;
}

.snack-peek-track.paused {
  animation-play-state: paused;
}

.snack-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.snack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.snack-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.snack-card:hover img {
  transform: scale(1.07);
}

.snack-card-label {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #222233;
  text-align: center;
  background: #fff;
}

@media (max-width: 640px) {
  .snack-peek-section {
    padding: 60px 0 40px;
  }

  .snack-card {
    width: 160px;
  }

  .snack-card img {
    height: 150px;
  }
}

/* Hero Image Strip */
.hero-strip {
  width: 100%;
  overflow: hidden;
  background: var(--rice-white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-strip-row {
  width: 100%;
  overflow: hidden;
}

@keyframes strip-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes strip-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero-strip-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.hero-strip-track-1 {
  animation: strip-scroll-left 40s linear infinite;
}

.hero-strip-track-2 {
  animation: strip-scroll-right 36s linear infinite;
}

.hero-strip-track img {
  flex-shrink: 0;
  width: 150px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

@media (max-width: 640px) {
  .hero-strip-track img {
    width: 120px;
    height: 136px;
  }

  .hero-strip {
    gap: 7px;
  }
}

/* Quality Section */
.quality-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 105, 180, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.quality-wave-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.quality-wave-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quality-image {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.quality-image:hover img {
  transform: scale(1.05);
}

.quality-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quality-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1.2;
}

.quality-heading .bites-pink {
  position: relative;
  display: inline-block;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quality-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.quality-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.quality-item-content {
  flex: 1;
}

.quality-item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 6px;
}

.quality-item-text {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--rice-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-black);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: var(--hot-pink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 968px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quality-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quality-image {
    height: 400px;
  }

  .quality-heading {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .process-section,
  .quality-section,
  .faq-section {
    padding: 60px 0;
  }

  .process-header,
  .faq-header {
    margin-bottom: 40px;
  }

  .quality-heading {
    font-size: 28px;
  }

  .quality-image {
    height: 300px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.85), rgba(58, 95, 205, 0.85));
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-section .cta-button {
  background: white;
  color: var(--hot-pink);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-section .cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.95));
}

@media (max-width: 640px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-section .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.13);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #F0F0F0;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-black);
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-gray);
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.cart-drawer-close:hover {
  background: #F5F5F5;
  color: var(--ink-black);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  min-height: 280px;
  color: #C0C0C0;
  padding: 40px;
}

.cart-empty svg {
  opacity: 0.4;
}

.cart-empty p {
  font-size: 15px;
  color: #AAAAAA;
  font-weight: 500;
  margin: 0;
}

.cart-items-list {
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  background: #FAFAFA;
  border-radius: 14px;
  padding: 14px;
  position: relative;
  align-items: flex-start;
}

.cart-item-img {
  width: 90px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1.3;
}

.cart-item-sub {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 400;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--hot-pink);
  margin-top: 6px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1.5px solid #E0E0E0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-black);
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}

.cart-qty-btn:hover {
  border-color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.05);
  color: var(--hot-pink);
}

.cart-qty-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-black);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #CCCCCC;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
  font-size: 16px;
}

.cart-item-remove:hover {
  color: #FF4444;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid #F0F0F0;
  flex-shrink: 0;
  background: white;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-black);
}

.cart-subtotal-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-black);
}

.cart-checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.45);
}

.cart-checkout-note {
  font-size: 11px;
  color: #AAAAAA;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
}

/* Footer Styles */
.footer {
  background: var(--ink-black);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: 180px;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--hot-pink);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-tokushoho {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-tokushoho:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 48px 0 24px;
  }

  .footer-content {
    gap: 40px;
    margin-bottom: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}


/* ===========================
   Story Hero
=========================== */
.story-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: 80px;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
}

.story-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.2) 0%,
    rgba(26, 26, 46, 0.75) 100%
  );
}

.story-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.story-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.story-hero-title {
  font-size: 72px;
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.story-hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
  max-width: 520px;
}

/* ===========================
   Shared Label
=========================== */
.story-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.story-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink-black);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ===========================
   Our Story Block
=========================== */
.story-section {
  padding: 100px 0;
  background: var(--rice-white);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-block-image {
  position: relative;
}

.story-img-stack {
  position: relative;
  height: 540px;
}

.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 80px;
  height: 420px;
  z-index: 1;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.story-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 260px;
  z-index: 2;
}

.story-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 5px solid white;
}

.story-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hot-pink), var(--bright-navy));
  z-index: 0;
  opacity: 0.4;
}

.story-block-text {
  display: flex;
  flex-direction: column;
}

.story-block-text p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-block-text p:last-child {
  margin-bottom: 0;
}

/* ===========================
   What We Offer
=========================== */
.offer-section {
  padding: 100px 0;
  background: var(--ivory);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.offer-text-side {
  display: flex;
  flex-direction: column;
  order: 1;
}

.offer-label {
  color: var(--bright-navy);
  background: rgba(58, 95, 205, 0.08);
}

.offer-text-side p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 28px;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.offer-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.offer-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bright-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
}

.offer-feature-item p {
  font-size: 15px;
  color: var(--ink-black);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 0;
}

.offer-images-side {
  order: 2;
}

.offer-img-stack {
  position: relative;
  height: 480px;
}

.offer-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  height: 380px;
}

.offer-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.offer-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 220px;
}

.offer-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  border: 4px solid white;
}

/* ===========================
   Mission Section
=========================== */
.mission-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.mission-bg-img {
  position: absolute;
  inset: 0;
}

.mission-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(58, 95, 205, 0.75) 100%
  );
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.mission-label {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.mission-heading {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.mission-statements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mission-item p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-weight: 400;
  padding-left: 20px;
  border-left: 3px solid rgba(255,255,255,0.35);
}

.mission-cta {
  display: inline-block;
  background: white;
  color: var(--ink-black);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.mission-cta:hover {
  background: var(--hot-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,20,147,0.35);
}

/* ===========================
   Nav active
=========================== */
.nav-active {
  color: var(--hot-pink) !important;
  font-weight: 600;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .story-hero {
    height: 480px;
    padding-bottom: 60px;
  }

  .story-hero-title {
    font-size: 52px;
  }

  .story-block,
  .offer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-img-stack {
    height: 380px;
  }

  .story-img-main {
    right: 60px;
    height: 290px;
  }

  .story-img-secondary {
    width: 160px;
    height: 190px;
  }

  .story-image-accent {
    display: none;
  }

  .offer-images-side {
    order: -1;
  }

  .offer-img-stack {
    height: 320px;
  }

  .offer-img-main {
    right: 40px;
    height: 260px;
  }

  .offer-img-secondary {
    width: 150px;
    height: 170px;
  }

  .mission-heading {
    font-size: 38px;
  }

  .story-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .story-hero {
    height: 420px;
    padding-bottom: 48px;
  }

  .story-hero-title {
    font-size: 40px;
  }

  .story-hero-lead {
    font-size: 15px;
  }

  .story-section,
  .offer-section {
    padding: 72px 0;
  }

  .mission-section {
    padding: 80px 0;
  }

  .mission-heading {
    font-size: 30px;
  }

  .story-heading {
    font-size: 26px;
  }
}


/* ===========================
   FAQ Hero
=========================== */
.faq-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: 80px;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
}

.faq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.78) 100%
  );
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.faq-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.faq-title-accent {
  color: var(--bright-pink);
}

.faq-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.7;
}

/* ===========================
   FAQ Page Section
=========================== */
.faq-page-section {
  padding: 80px 0 100px;
  background-color: var(--rice-white);
}

.faq-page-layout {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ===========================
   FAQ Category
=========================== */
.faq-category {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-category-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bright-navy);
  border-bottom: 2px solid var(--bright-navy);
  padding-bottom: 12px;
  margin-bottom: 8px;
}

/* ===========================
   FAQ Items (shared from style.css pattern)
=========================== */
.faq-container {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 22px 16px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--bright-navy);
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bright-navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  padding-left: 16px;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 36px;
  margin: 8px 0;
}

.faq-answer ul li {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ===========================
   FAQ CTA Block
=========================== */
.faq-cta-block {
  margin-top: 80px;
  background: linear-gradient(160deg, #fff5f3 0%, #fef0ec 50%, #fdf2f8 100%);
  border: 1.5px solid #fde2db;
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}

.faq-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.faq-cta-text {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.faq-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #e0446a;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-cta-btn:hover {
  background: #c93660;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 68, 106, 0.2);
}

/* ===========================
   nav-active style
=========================== */
.nav-active {
  color: var(--bright-navy) !important;
  font-weight: 600;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .faq-hero {
    height: 380px;
    padding-bottom: 48px;
  }

  .faq-cta-block {
    padding: 48px 24px;
  }

  .faq-cta-title {
    font-size: 1.4rem;
  }
}


/* =============================================
   AFFILIATE PAGE STYLES — prefix: af-
   ============================================= */

/* Hero */
.af-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #fff8f0 0%, #ffeef5 40%, #f0f4ff 100%);
  overflow: hidden;
  text-align: center;
}

.af-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.af-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.af-shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #FF1493, transparent);
  top: -100px;
  right: -80px;
}

.af-shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #3A5FCD, transparent);
  bottom: -80px;
  left: -60px;
}

.af-shape-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #FF69B4, transparent);
  top: 30%;
  left: 10%;
}

.af-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.af-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 20, 147, 0.08);
  color: #FF1493;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.af-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #1a2a4a;
  line-height: 1.12;
  margin-bottom: 20px;
}

.af-hero-subtitle {
  font-size: 1.2rem;
  color: #3A5FCD;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.af-hero-note {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 36px;
}

.af-hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FF1493 0%, #3A5FCD 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(255, 20, 147, 0.2);
}

.af-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 20, 147, 0.3);
}

/* How It Works */
.af-how {
  padding: 96px 0;
  background: #fff;
}

.af-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 56px;
}

.af-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.af-step {
  text-align: center;
  padding: 40px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, #fff9fc 0%, #f5f0ff 100%);
  border: 1px solid rgba(255, 20, 147, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.af-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 20, 147, 0.08);
}

.af-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF1493 0%, #3A5FCD 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.af-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a4a;
  margin-bottom: 12px;
}

.af-step-desc {
  font-size: 0.9rem;
  color: #5a6577;
  line-height: 1.7;
}

/* Who We Love */
.af-who {
  padding: 96px 0;
  background: linear-gradient(180deg, #fafcff 0%, #fef8fb 100%);
}

.af-who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.af-who-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2a4a;
  margin-bottom: 16px;
}

.af-who-text > p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}

.af-who-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.af-who-list li {
  font-size: 0.92rem;
  color: #3a4a5e;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.af-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
}

.af-who-note {
  font-size: 0.88rem;
  color: #7a8a9e;
  font-style: italic;
}

.af-who-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.af-who-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.af-who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.af-who-img:hover img {
  transform: scale(1.05);
}

.af-who-img:nth-child(2) {
  margin-top: 24px;
}

.af-who-img:nth-child(3) {
  margin-top: -24px;
}

/* FAQ Section */
.af-faq {
  padding: 96px 0;
  background: #fff;
}

.af-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.af-faq-item {
  border-bottom: 1px solid #e8edf5;
}

.af-faq-item:first-child {
  border-top: 1px solid #e8edf5;
}

.af-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a3a4e;
  text-align: left;
  transition: color 0.2s;
}

.af-faq-btn:hover {
  color: #FF1493;
}

.af-faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 20, 147, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1493;
  transition: transform 0.3s, background 0.3s;
}

.af-faq-item.af-open .af-faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
  color: #fff;
}

.af-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.af-faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.8;
}

.af-faq-answer-inner p {
  margin: 0 0 10px;
}

.af-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Earnings Table */
.af-earnings-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8edf5;
}

.af-earnings-table th {
  background: #f5f7fa;
  color: #3a4a5e;
  font-weight: 600;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #e8edf5;
}

.af-earnings-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f3f7;
  color: #3a4a5e;
}

.af-earnings-table tr:last-child td {
  border-bottom: none;
}

.af-earnings-table tbody tr:nth-child(even) {
  background: #fafbfd;
}

.af-earnings-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #8899aa;
  font-style: italic;
}

/* Application Form */
.af-apply {
  padding: 96px 0;
  background: linear-gradient(180deg, #fafcff 0%, #fef6fa 100%);
}

.af-apply-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.af-apply-header {
  text-align: center;
  margin-bottom: 40px;
}

.af-apply-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #1a2a4a;
  margin-bottom: 12px;
}

.af-apply-header p {
  font-size: 0.95rem;
  color: #5a6577;
}

.af-form {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 20, 147, 0.06);
}

.af-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.af-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.af-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3a4a5e;
  margin-bottom: 7px;
}

.af-required {
  color: #FF1493;
}

.af-input,
.af-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #2a3a4e;
  background: #fafbfd;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}

.af-input:focus,
.af-textarea:focus {
  border-color: #FF1493;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.06);
}

.af-input.af-field-error,
.af-textarea.af-field-error {
  border-color: #ef4444;
}

.af-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.af-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 5px;
  min-height: 18px;
  display: block;
}

.af-subject-display {
  font-size: 0.88rem;
  color: #5a6577;
  background: #fef8fb;
  border: 1px solid #f5e0ec;
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 20px;
}

.af-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #FF1493 0%, #3A5FCD 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 34px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.2);
}

.af-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.3);
}

.af-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.af-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  animation: af-fadeIn 0.4s ease;
}

.af-success.af-visible {
  display: block;
}

.af-success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  color: #10b981;
}

.af-success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2a4a;
  margin-bottom: 8px;
}

.af-success-body {
  font-size: 0.95rem;
  color: #5a6577;
}

/* Closing CTA Banner */
.af-cta-banner {
  padding: 80px 0;
  background: #1a2a4a;
  position: relative;
  overflow: hidden;
}

.af-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(58, 95, 205, 0.1);
  pointer-events: none;
}

.af-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 20, 147, 0.06);
  pointer-events: none;
}

.af-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.af-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.af-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.af-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF1493 0%, #3A5FCD 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.af-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.35);
}

@keyframes af-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .af-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .af-who-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .af-who-images {
    max-width: 360px;
    margin: 0 auto;
  }

  .af-form {
    padding: 28px 20px;
  }

  .af-field-row {
    grid-template-columns: 1fr;
  }

  .af-hero {
    padding: 130px 0 70px;
  }
}


/* =============================================
   CONTACT PAGE STYLES — prefix: ct-
   ============================================= */

/* Hero */
.ct-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #ffffff 0%, #fef9f5 40%, #fff5f0 70%, #fdf2f8 100%);
  overflow: hidden;
  text-align: center;
}

.ct-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ct-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.ct-shape-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #fda4af, transparent);
  top: -80px;
  left: -100px;
}

.ct-shape-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #93c5fd, transparent);
  bottom: -60px;
  right: -60px;
}

.ct-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #fde68a, transparent);
  top: 40%;
  right: 15%;
}

.ct-hero-content {
  position: relative;
  z-index: 1;
}

.ct-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #1f2937;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ct-hero-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Nudge Banner */
.ct-faq-nudge {
  padding: 32px 0;
  background: #fff;
}

.ct-nudge-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 20px;
  padding: 28px 32px;
  flex-wrap: wrap;
}

.ct-nudge-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fef3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0446a;
}

.ct-nudge-text {
  flex: 1;
  min-width: 200px;
}

.ct-nudge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 4px;
}

.ct-nudge-body {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
}

.ct-nudge-btn {
  flex-shrink: 0;
  display: inline-block;
  background: #e0446a;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ct-nudge-btn:hover {
  background: #c93660;
  box-shadow: 0 4px 14px rgba(224, 68, 106, 0.2);
}

/* Main Layout */
.ct-main {
  padding: 64px 0 96px;
  background: #fafafa;
}

.ct-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Form Column */
.ct-form-col {
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.ct-form-tag {
  display: inline-block;
  background: #f3f4f6;
  color: #6B7280;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.ct-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222233;
  margin-bottom: 8px;
}

.ct-form-desc {
  font-size: 0.93rem;
  color: #6B7280;
  margin-bottom: 32px;
}

/* Form Fields */
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ct-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
}

.ct-required {
  color: #e0446a;
}

.ct-input,
.ct-select,
.ct-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #222233;
  background: #fafafa;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: #9ca3af;
  background: #fff;
}

.ct-input.ct-field-error,
.ct-select.ct-field-error,
.ct-textarea.ct-field-error {
  border-color: #ef4444;
}

.ct-select-wrapper {
  position: relative;
}

.ct-select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.ct-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-size: 0.9rem;
}

.ct-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.ct-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 5px;
  min-height: 18px;
  display: block;
}

.ct-form-footer {
  margin-top: 8px;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e0446a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 34px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  box-shadow: none;
  letter-spacing: 0.02em;
}

.ct-submit-btn:hover {
  background: #c93660;
  opacity: 1;
}

.ct-submit-btn:active {
  background: #b02d54;
}

.ct-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ct-submit-btn--ja {
  background: #e0446a;
  box-shadow: none;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.ct-submit-btn--ja:hover {
  background: #c93660;
  box-shadow: none;
}

.ct-btn-icon {
  font-size: 1.1rem;
}

/* Success State */
.ct-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  animation: ct-fadeIn 0.4s ease;
}

.ct-success.ct-visible {
  display: block;
}

.ct-success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.ct-success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222233;
  margin-bottom: 8px;
}

.ct-success-body {
  font-size: 0.95rem;
  color: #6B7280;
}

/* Side Column */
.ct-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* Japanese Contact Card */
.ct-ja-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ct-ja-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: background 0.2s;
}

.ct-ja-toggle:hover {
  background: #fafafa;
}

.ct-ja-toggle-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ct-ja-flag {
  font-size: 1.8rem;
}

.ct-ja-toggle-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222233;
}

.ct-ja-toggle-sub {
  display: block;
  font-size: 0.78rem;
  color: #6B7280;
  margin-top: 2px;
}

.ct-ja-chevron {
  font-size: 1.1rem;
  color: #9ca3af;
  transition: transform 0.3s;
}

.ct-ja-chevron.ct-open {
  transform: rotate(180deg);
}

.ct-ja-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ct-ja-panel.ct-open {
  max-height: 800px;
}

.ct-ja-panel-inner {
  padding: 0 24px 24px;
  border-top: 1px solid #f3f4f6;
}

.ct-ja-intro {
  font-size: 0.87rem;
  color: #6B7280;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.ct-ja-form-inner .ct-field {
  margin-bottom: 16px;
}

/* Nav active */
.nav-active {
  color: #e0446a !important;
  font-weight: 600;
}

/* Animations */
@keyframes ct-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 960px) {
  .ct-layout {
    grid-template-columns: 1fr;
  }

  .ct-side-col {
    order: -1;
  }
}

@media (max-width: 640px) {
  .ct-form-col {
    padding: 28px 20px;
  }

  .ct-field-row {
    grid-template-columns: 1fr;
  }

  .ct-nudge-card {
    flex-direction: column;
    text-align: center;
  }

  .ct-hero {
    padding: 120px 0 60px;
  }
}

/* プライバシーポリシー */
.pp-hero-sub {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

.pp-wrap {
  max-width: 760px;
}

.pp-section {
  padding: 36px 0;
  border-bottom: 1px solid #e8e4dc;
}

.pp-section-last {
  border-bottom: none;
  padding-bottom: 0;
}

.pp-section-title {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
}

.pp-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.pp-num::after {
  content: '.';
}

.pp-section p {
  font-size: 0.925rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 10px;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-list li {
  font-size: 0.925rem;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0392b;
}

.pp-note {
  margin-top: 14px !important;
  font-size: 0.85rem !important;
  color: #888 !important;
  font-style: italic;
}

.pp-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
}
/* ===========================
   Tokushoho Hero
=========================== */
.tokushoho-hero {
  margin-top: 80px;
  padding: 72px 0 56px;
  background: #f5f3ef;
  border-bottom: 1px solid #e8e4dc;
}

.tokushoho-hero-content {
  max-width: 760px;
}

.tokushoho-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 14px;
}

.tokushoho-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0;
}

/* ===========================
   Main Section
=========================== */
.tokushoho-main {
  padding: 64px 0 96px;
  background: #fff;
}

.tokushoho-wrap {
  max-width: 860px;
}

.tokushoho-intro {
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #f9f7f4;
  border-left: 4px solid #c0392b;
  border-radius: 0 6px 6px 0;
}

.tokushoho-intro p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   Table
=========================== */
.tokushoho-table-wrap {
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 48px;
}

.tokushoho-table {
  width: 100%;
  border-collapse: collapse;
}

.tokushoho-table tbody tr {
  border-bottom: 1px solid #e8e4dc;
}

.tokushoho-table tbody tr:last-child {
  border-bottom: none;
}

.tokushoho-table th {
  width: 200px;
  padding: 22px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
  background: #f5f3ef;
  vertical-align: top;
  white-space: nowrap;
  border-right: 1px solid #e8e4dc;
}

.tokushoho-table td {
  padding: 22px 28px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  vertical-align: top;
}

.tokushoho-note {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
  line-height: 1.6;
}

.tokushoho-link {
  color: #c0392b;
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tokushoho-link:hover {
  color: #a93226;
  border-bottom-color: #a93226;
}

/* ===========================
   Footer Note
=========================== */
.tokushoho-footer-note {
  padding: 24px 28px;
  background: #f9f7f4;
  border-radius: 8px;
  border: 1px solid #e8e4dc;
}

.tokushoho-footer-note p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 640px) {
  .tokushoho-hero {
    padding: 48px 0 40px;
  }

  .tokushoho-table-wrap {
    border-radius: 8px;
  }

  .tokushoho-table,
  .tokushoho-table tbody,
  .tokushoho-table tr,
  .tokushoho-table th,
  .tokushoho-table td {
    display: block;
    width: 100%;
  }

  .tokushoho-table tr {
    border-bottom: 1px solid #e8e4dc;
    padding: 0;
  }

  .tokushoho-table th {
    white-space: normal;
    border-right: none;
    border-bottom: 1px solid #e0ddd6;
    padding: 16px 20px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
  }

  .tokushoho-table td {
    padding: 12px 20px 18px;
    font-size: 0.875rem;
  }
}

/* ===========================
   レギュラーボックスのページ
=========================== */


.whats-inside-section {
  padding: 80px 0 100px;
  background: #fafaf8;
  position: relative;
  overflow: hidden;
}


.whats-inside-header {
  text-align: center;
  margin-bottom: 56px;
}

.whats-inside-tag {
  display: inline-block;
  background: #fff0f7;
  color: #FF1493;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid #ffb3d9;
  margin-bottom: 14px;
}

.whats-inside-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.15;
}

.whats-inside-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.inside-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #fce4ef;
}

.inside-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #fce4ef;
}

.inside-item-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 160px;
  color: #FF1493;
}

.inside-item-label.savory {
  color: #d4176e;
}

.inside-item-label.seasonal {
  color: #FF69B4;
}

.inside-item-label.drink {
  color: #c4136a;
}

.inside-item-label.matcha {
  color: #e0157c;
}

.inside-item-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.inside-cta {
  margin-top: 48px;
  background-image: url('img/indexcta.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.inside-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,5,15,0.65) 0%, rgba(90,10,35,0.58) 100%);
  pointer-events: none;
}

.inside-info-content {
  padding: 48px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.inside-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.18);
  border: 1.5px solid rgba(255, 105, 180, 0.35);
  margin: 0 auto 18px;
  color: #FF69B4;
}

.inside-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.inside-info-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 480px;
}

.inside-info-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF1493 0%, #e0157c 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.inside-info-btn:hover {
  background: linear-gradient(135deg, #e0157c 0%, #c4136a 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(255, 20, 147, 0.5);
}

@media (max-width: 580px) {
  .whats-inside-section {
    padding: 60px 0 80px;
  }

  .whats-inside-header {
    margin-bottom: 36px;
  }

  .inside-item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }

  .inside-item-label {
    width: auto;
    font-size: 1.5rem;
  }

  .inside-info-content {
    padding: 36px 24px;
  }
}


/* =====================================================
   Matcha Box Detail Page
   ===================================================== */

/* Breadcrumb */
.mb-breadcrumb {
  background: #f4faf2;
  border-bottom: 1px solid #d4ead0;
  padding: 12px 0;
}

.mb-breadcrumb a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.mb-breadcrumb a:hover {
  color: #3a8c4e;
}

.mb-breadcrumb span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #222233;
  font-weight: 600;
}

.mb-breadcrumb-sep {
  margin: 0 8px;
  color: #9CA3AF;
  font-weight: 400 !important;
}

/* =====================================================
   Hero / Product Section
   ===================================================== */

.mb-hero-section {
  padding: 56px 0 80px;
  background: #f4faf2;
  position: relative;
  overflow: hidden;
}

.mb-hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(72, 160, 90, 0.10), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.mb-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Slider */
.mb-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.mb-slider-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #d8efd4;
  aspect-ratio: 1 / 1;
}

.mb-slider-track {
  width: 100%;
  height: 100%;
}

.mb-slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mb-slider-img.active {
  opacity: 1;
}

.mb-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  color: #222233;
}

.mb-slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.mb-slider-prev {
  left: 12px;
}

.mb-slider-next {
  right: 12px;
}

.mb-slider-thumbs {
  display: flex;
  gap: 10px;
}

.mb-slider-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.mb-slider-thumb.active,
.mb-slider-thumb:hover {
  opacity: 1;
  border-color: #3a8c4e;
}


/* 画像を少し小さくする */
.mb-slider-wrap {
  max-width: 400px;
  width: 100%;
  justify-self: center;
}

/* 画像全体を収める */
.mb-slider-img {
  object-fit: contain;
}

/* Product Details */
.mb-product-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mb-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mb-badge {
  display: inline-block;
  background: #3a8c4e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.mb-badge-theme {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.mb-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.mb-product-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3a8c4e;
  margin: 0 0 24px;
}

/* Highlights */
.mb-highlights {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.mb-highlight-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #eaf4ea;
  border: 1px solid #a8d4a8;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2a6b3a;
}

.mb-highlight-icon {
  display: flex;
  align-items: center;
  color: #3a8c4e;
}

/* Price */
.mb-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.mb-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.mb-price-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
}

/* Add to Cart Button */
.mb-add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 70%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3a8c4e 0%, #2d7040 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
}

.mb-add-to-cart-btn:hover {
  background: linear-gradient(135deg, #2d7040 0%, #235934 100%);
  transform: translateY(-2px);
}

.mb-add-to-cart-btn:active {
  transform: translateY(0);
}

.mb-cart-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  margin: 0 0 28px;
}

/* Feature List */
.mb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #d4ead0;
}

.mb-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.mb-feature-check {
  color: #3a8c4e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================================================
   About Matcha Section
   ===================================================== */

.mb-about-section {
  padding: 80px 0;
  background: #fff;
}

.mb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mb-section-tag {
  display: inline-block;
  background: #eaf4ea;
  color: #3a8c4e;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid #a8d4a8;
  margin-bottom: 16px;
}

.mb-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mb-about-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.75;
  margin: 0 0 16px;
}

.mb-about-desc em {
  font-style: normal;
  color: #3a8c4e;
  font-weight: 600;
}

.mb-about-desc strong {
  color: #1a1a1a;
}

.mb-matcha-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mb-matcha-tag {
  padding: 7px 18px;
  background: #f4faf2;
  border: 1.5px solid #c0dfc0;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  transition: all 0.2s ease;
}

.mb-matcha-tag:hover {
  border-color: #3a8c4e;
  color: #3a8c4e;
  background: #eaf4ea;
}

.mb-about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.mb-about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mb-about-image:hover img {
  transform: scale(1.04);
}

/* =====================================================
   What's Inside Section
   ===================================================== */

.mb-inside-section {
  padding: 56px 0 100px;
  background: #fafaf8;
}

.mb-inside-header {
  text-align: center;
  margin-bottom: 48px;
}

.mb-inside-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d4ead0;
  margin-bottom: 32px;
}

.mb-inside-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #d4ead0;
}

.mb-inside-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 180px;
  color: #3a8c4e;
}

.mb-inside-label.flavor {
  color: #2d7040;
}

.mb-inside-label.popular {
  color: #5aab6e;
}

.mb-inside-label.unique {
  color: #235934;
}

.mb-inside-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.mb-inside-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eaf4ea;
  border: 1px solid #a8d4a8;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d7040;
  margin-bottom: 48px;
}

.mb-inside-note svg {
  flex-shrink: 0;
  color: #3a8c4e;
}


/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 900px) {
  .mb-product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mb-slider-wrap {
    position: static;
  }

  .mb-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mb-about-image {
    order: -1;
  }

  .mb-about-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .mb-hero-section {
    padding: 32px 0 60px;
  }

  .mb-inside-item {
    flex-direction: column;
    gap: 10px;
    padding: 22px 0;
  }

  .mb-inside-label {
    width: auto;
    font-size: 1.375rem;
  }


  .mb-slider-thumbs {
    gap: 8px;
  }

  .mb-slider-thumb {
    width: 60px;
    height: 60px;
  }

  .mb-highlights {
    gap: 6px;
  }
}


/* =====================================================
   Konbini Box Detail Page
   ===================================================== */

/* Breadcrumb */
.kb-breadcrumb {
  background: #FFFEF7;
  border-bottom: 1px solid #f0ece0;
  padding: 12px 0;
}

.kb-breadcrumb a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.kb-breadcrumb a:hover {
  color: #3A5FCD;
}

.kb-breadcrumb span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #222233;
  font-weight: 600;
}

.kb-breadcrumb-sep {
  margin: 0 8px;
  color: #9CA3AF;
  font-weight: 400 !important;
}

/* =====================================================
   Hero / Product Section
   ===================================================== */

.kb-hero-section {
  padding: 56px 0 80px;
  background: #FFFEF7;
  position: relative;
  overflow: hidden;
}

.kb-hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 95, 205, 0.08), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.kb-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Slider */
.kb-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.kb-slider-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f0e8;
  aspect-ratio: 1 / 1;
}

.kb-slider-track {
  width: 100%;
  height: 100%;
}

.kb-slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.kb-slider-img.active {
  opacity: 1;
}

.kb-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  color: #222233;
}

.kb-slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.kb-slider-prev {
  left: 12px;
}

.kb-slider-next {
  right: 12px;
}

.kb-slider-thumbs {
  display: flex;
  gap: 10px;
}

.kb-slider-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.kb-slider-thumb.active,
.kb-slider-thumb:hover {
  opacity: 1;
  border-color: #3A5FCD;
}

/* Hero画像サイズ調整 */
.kb-slider-wrap {
  max-width: 400px;
  width: 100%;
  justify-self: center;
}

.kb-slider-img {
  object-fit: contain;
}
/* Product Details */
.kb-product-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kb-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.kb-badge {
  display: inline-block;
  background: #3A5FCD;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.kb-badge-store {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.kb-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.kb-product-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3A5FCD;
  margin: 0 0 24px;
}

/* Highlights */
.kb-highlights {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.kb-highlight-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #eef2fb;
  border: 1px solid #a3b8e8;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2a4aa0;
}

.kb-highlight-icon {
  display: flex;
  align-items: center;
  color: #3A5FCD;
}

/* Price */
.kb-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.kb-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.kb-price-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
}

/* Add to Cart Button */
.kb-add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 70%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3A5FCD 0%, #2E4EAF 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
}

.kb-add-to-cart-btn:hover {
  background: linear-gradient(135deg, #2E4EAF 0%, #1E3A8A 100%);
  transform: translateY(-2px);
}

.kb-add-to-cart-btn:active {
  transform: translateY(0);
}

.kb-cart-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  margin: 0 0 28px;
}

/* Feature List */
.kb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #f0ece0;
}

.kb-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.kb-feature-check {
  color: #3A5FCD;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================================================
   About Konbini Section
   ===================================================== */

.kb-about-section {
  padding: 80px 0;
  background: #fff;
}

.kb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kb-section-tag {
  display: inline-block;
  background: #EEF2FB;
  color: #3A5FCD;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid #A3B8E8;
  margin-bottom: 16px;
}

.kb-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.kb-about-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.75;
  margin: 0 0 16px;
}

.kb-about-desc em {
  font-style: normal;
  color: #3A5FCD;
  font-weight: 600;
}

.kb-about-desc strong {
  color: #1a1a1a;
}

.kb-store-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.kb-store-tag {
  padding: 7px 18px;
  background: #FFFEF7;
  border: 1.5px solid #e5e0d0;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  transition: all 0.2s ease;
}

.kb-store-tag:hover {
  border-color: #5B4FCF;
  color: #5B4FCF;
  background: #F0EEFF;
}

.kb-about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.kb-about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kb-about-image:hover img {
  transform: scale(1.04);
}

/* =====================================================
   Box Description Section
   ===================================================== */

.kb-desc-section {
  padding: 60px 0 0;
  background: #fafaf8;
}

.kb-desc-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.kb-desc-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   What's Inside Section
   ===================================================== */

.kb-inside-section {
  padding: 56px 0 100px;
  background: #fafaf8;
}

.kb-inside-header {
  text-align: center;
  margin-bottom: 48px;
}

.kb-inside-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E0E7F5;
  margin-bottom: 32px;
}

.kb-inside-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #E0E7F5;
}

.kb-inside-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 180px;
  color: #3A5FCD;
}

.kb-inside-label.sweet {
  color: #5B4FCF;
}

.kb-inside-label.favs {
  color: #6C63FF;
}

.kb-inside-label.full {
  color: #1E3A8A;
}

.kb-inside-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.kb-inside-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EEF2FB;
  border: 1px solid #A3B8E8;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2E4EAF;
  margin-bottom: 48px;
}

.kb-inside-note svg {
  flex-shrink: 0;
  color: #3A5FCD;
}


/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 900px) {
  .kb-product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kb-slider-wrap {
    position: static;
  }

  .kb-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kb-about-image {
    order: -1;
  }

  .kb-about-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .kb-hero-section {
    padding: 32px 0 60px;
  }

  .kb-inside-item {
    flex-direction: column;
    gap: 10px;
    padding: 22px 0;
  }

  .kb-inside-label {
    width: auto;
    font-size: 1.375rem;
  }


  .kb-slider-thumbs {
    gap: 8px;
  }

  .kb-slider-thumb {
    width: 60px;
    height: 60px;
  }

  .kb-highlights {
    gap: 6px;
  }
}

/* =====================================================
   ログインページ
   ===================================================== */

.auth-page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.auth-logo {
  position: fixed;
  top: 24px;
  left: 32px;
  text-decoration: none;
  z-index: 10;
}

.auth-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-black, #222233);
  margin-bottom: 28px;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-field label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.auth-field input {
  padding: 14px 0;
  border: none;
  border-bottom: 1.5px solid #E0DDD8;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--ink-black, #222233);
  background: transparent;
  transition: border-color 0.2s ease;
  outline: none;
}

.auth-field input:focus {
  border-color: var(--hot-pink, #FF1493);
  box-shadow: none;
  background: transparent;
}

.auth-field input::placeholder {
  color: #C5C9D2;
}

.auth-btn {
  margin-top: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
}

.auth-btn:hover {
  background: linear-gradient(135deg, #d4117a, #2e4db0);
  opacity: 0.92;
}

.auth-btn:active {
  transform: scale(0.98);
}

.auth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-error {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  color: #991B1B;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 8px;
}

.auth-success {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  color: #166534;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 8px;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--hot-pink, #FF1493);
  cursor: pointer;
}

.login-forgot {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-forgot:hover {
  color: var(--hot-pink, #FF1493);
}

.login-divider {
  height: 1px;
  background: #EEECE8;
  margin: 36px 0;
}

.login-activate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.activate-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-black, #222233);
}

.activate-subtext {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.7;
}

.btn-activate {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 24px;
  border: 1.5px solid var(--hot-pink, #FF1493);
  color: var(--hot-pink, #FF1493);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-activate:hover {
  background: var(--hot-pink, #FF1493);
  color: #fff;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 0 8px;
  }
}
/* =====================================================
   リセットパスワード
   ===================================================== */

.reset-description {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}

.back-to-login {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-login:hover {
  color: var(--hot-pink, #FF1493);
}

/* =====================================================
   セットアップパスワード
   ===================================================== */
.setup-description {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =====================================================
   アクティベートアカウント
   ===================================================== */
.activate-description {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}

.back-to-login {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-login:hover {
  color: var(--hot-pink, #FF1493);
}



/* ============================================================
   ここから下チェックアウトのページ
   ============================================================ */



.checkout-page .checkout-wrapper,
.checkout-page .checkout-wrapper *,
.checkout-page .empty-cart-overlay,
.checkout-page .empty-cart-overlay * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Layout: Two-panel split
   ============================================================ */

.checkout-page .checkout-wrapper {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.checkout-page .checkout-left {
  flex: 1;
  background: #ffffff;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
}

.checkout-page .checkout-left-inner {
  width: 100%;
  max-width: 520px;
  padding: 48px 0 80px;
}

.checkout-page .checkout-right {
  width: 38%;
  max-width: 480px;
  background: #f5f5f5;
  border-left: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-start;
  padding: 0 40px;
}

.checkout-page .checkout-right-inner {
  width: 100%;
  max-width: 400px;
  padding: 48px 0 80px;
}

/* ============================================================
   Logo
   ============================================================ */

.checkout-page .co-logo {
  margin-bottom: 24px;
}

.checkout-page .co-logo a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.checkout-page .co-logo img {
  height: 32px;
  width: auto;
}

.checkout-page .co-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

/* ============================================================
   Breadcrumb
   ============================================================ */

.checkout-page .co-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.checkout-page .co-breadcrumb svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.checkout-page .co-breadcrumb-link {
  color: #7C3AED;
  text-decoration: none;
  font-size: 13px;
}

.checkout-page .co-breadcrumb-link:hover {
  text-decoration: underline;
}

.checkout-page .co-breadcrumb-current {
  font-size: 13px;
  color: #1a1a2e;
  font-weight: 500;
}

.checkout-page .co-breadcrumb-inactive {
  font-size: 13px;
  color: #9ca3af;
}

/* ============================================================
   Login prompt
   ============================================================ */

.checkout-page .co-login-prompt {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-page .co-login-link {
  color: #7C3AED;
  text-decoration: none;
  font-weight: 500;
}

.checkout-page .co-login-link:hover {
  text-decoration: underline;
}

/* ============================================================
   Sections
   ============================================================ */

.checkout-page .co-section {
  margin-bottom: 28px;
}

.checkout-page .co-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* ============================================================
   Form fields
   ============================================================ */

.checkout-page .co-field {
  margin-bottom: 8px;
}

.checkout-page .co-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkout-page .co-field-row-3 {
  grid-template-columns: 1fr 100px 120px;
}

.checkout-page .co-field-grow {
  grid-column: auto;
}

.checkout-page .co-field-sm {
  min-width: 0;
}

.checkout-page .co-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.checkout-page .co-input:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.07);
}

.checkout-page .co-input::placeholder {
  color: #9ca3af;
}

.checkout-page .co-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.checkout-page .co-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #6B7280;
}

.checkout-page .co-checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #7C3AED;
  cursor: pointer;
  flex-shrink: 0;
}

.checkout-page .co-billing-same-label {
  margin-top: 0;
  margin-bottom: 12px;
}

.checkout-page .co-billing-fields {
  margin-top: 12px;
}

/* ============================================================
   Shipping display
   ============================================================ */

.checkout-page .co-shipping-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #7C3AED;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.07);
}

.checkout-page .co-ship-radio {
  flex-shrink: 0;
}

.checkout-page .co-radio-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  position: relative;
}

.checkout-page .co-radio-dot.active {
  border-color: #7C3AED;
}

.checkout-page .co-radio-dot.active::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C3AED;
}

.checkout-page .co-ship-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-page .co-ship-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

.checkout-page .co-ship-eta {
  font-size: 12px;
  color: #6B7280;
}

.checkout-page .co-ship-price {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

/* ============================================================
   Actions
   ============================================================ */

.checkout-page .co-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.checkout-page .co-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7C3AED;
  text-decoration: none;
  transition: color 0.15s;
}

.checkout-page .co-back-link:hover {
  text-decoration: underline;
}

.checkout-page .co-continue-btn {
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.1s;
}

.checkout-page .co-continue-btn:hover {
  background: linear-gradient(135deg, #6D28D9, #9333ea);
  opacity: 0.92;
}

.checkout-page .co-continue-btn:active {
  transform: scale(0.99);
}

.checkout-page .co-continue-btn:disabled {
  background: #c0b8d0;
  cursor: not-allowed;
}

/* ============================================================
   Legal text
   ============================================================ */

.checkout-page .co-legal-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 24px 0 0;
}

.checkout-page .co-legal {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

.checkout-page .co-legal a {
  color: #6B7280;
  text-decoration: underline;
  transition: color 0.15s;
}

.checkout-page .co-legal a:hover {
  color: #1a1a2e;
}

/* ============================================================
   Right panel: Summary
   ============================================================ */

.checkout-page .co-summary-toggle {
  display: none;
}

.checkout-page .co-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.checkout-page .co-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-page .co-item-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.checkout-page .co-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.checkout-page .co-item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #6B7280;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-page .co-item-info {
  flex: 1;
  min-width: 0;
}

.checkout-page .co-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-page .co-item-sub {
  font-size: 12px;
  color: #9ca3af;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-page .co-item-price {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  flex-shrink: 0;
}

.checkout-page .co-summary-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 16px 0;
}

/* Coupon */
.checkout-page .co-coupon-row {
  display: flex;
  gap: 8px;
}

.checkout-page .co-coupon-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s;
}

.checkout-page .co-coupon-input:focus {
  border-color: #7C3AED;
}

.checkout-page .co-coupon-input::placeholder {
  color: #9ca3af;
}

.checkout-page .co-coupon-btn {
  background: #ffffff;
  color: #1a1a2e;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.checkout-page .co-coupon-btn:hover {
  background: rgba(124, 58, 237, 0.07);
  border-color: #7C3AED;
  color: #7C3AED;
}

.checkout-page .co-coupon-btn:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.checkout-page .co-coupon-msg {
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
  font-weight: 500;
}

.checkout-page .co-coupon-msg.success { color: #16a34a; }
.checkout-page .co-coupon-msg.error { color: #dc2626; }

/* Totals */
.checkout-page .co-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-page .co-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #6B7280;
}

.checkout-page .co-total-row span:last-child {
  font-weight: 500;
  color: #1a1a2e;
}

.checkout-page .co-discount-label { color: #16a34a; }
.checkout-page .co-discount-value { color: #16a34a !important; }

.checkout-page .co-shipping-detail {
  padding-left: 0;
  text-align: right;
}

.checkout-page .co-shipping-detail-text {
  font-size: 11px;
  color: #9ca3af;
}

.checkout-page .co-tax-row {
  align-items: flex-start;
}

.checkout-page .co-tax-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-page .co-tax-title-row {
  font-size: 13px;
  color: #6B7280;
}

.checkout-page .co-summary-heading {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.checkout-page .co-grand-total {
  font-size: 15px;
  color: #1a1a2e;
}

.checkout-page .co-grand-total span {
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-size: 15px;
}

/* ============================================================
   Empty cart overlay
   ============================================================ */

.checkout-page .empty-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 51, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-page .empty-cart-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(34, 34, 51, 0.15);
}

.checkout-page .empty-cart-icon {
  color: #7C3AED;
  margin-bottom: 16px;
}

.checkout-page .empty-cart-modal h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.checkout-page .empty-cart-modal p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.checkout-page .empty-cart-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.checkout-page .empty-cart-btn:hover {
  opacity: 0.9;
}

/* ============================================================
   Responsive: tablet
   ============================================================ */

@media (max-width: 960px) {
  .checkout-page .checkout-wrapper {
    flex-direction: column;
  }

  .checkout-page .checkout-left {
    justify-content: center;
    padding: 0 24px;
    order: 1;
  }

  .checkout-page .checkout-left-inner {
    max-width: 640px;
    padding: 32px 0 60px;
  }

  .checkout-page .checkout-right {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #e0e0e0;
    justify-content: center;
    padding: 24px 0 0;
    background: #f5f5f5;
    order: 2;
  }

  .checkout-page .checkout-right-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
  }

  .checkout-page .co-summary-toggle {
    display: none;
  }

  .checkout-page .co-summary-body {
    display: block;
    padding: 20px 0;
  }

  .checkout-page .co-logo {
    display: block;
  }

  .checkout-page .co-summary-heading {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .checkout-page .checkout-left {
    padding: 0 16px;
  }

  .checkout-page .checkout-right-inner {
    padding: 0 16px;
  }

  .checkout-page .co-field-row {
    grid-template-columns: 1fr;
  }

  .checkout-page .co-field-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-page .co-field-grow {
    grid-column: 1 / -1;
  }

  .checkout-page .co-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .checkout-page .co-continue-btn {
    text-align: center;
  }

  .checkout-page .co-back-link {
    justify-content: center;
  }
}
/* ============================================================
   ここから下ペイメントのページ
   ============================================================ */


/* ============================================================
   payment.css – standalone, no dependency on checkout.css
   ============================================================ */

/* Reset & base for payment pages */
.payment-page .checkout-wrapper,
.payment-page .checkout-wrapper *,
.payment-page .empty-cart-overlay,
.payment-page .empty-cart-overlay * {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Layout: Two-panel split
   ============================================================ */

.payment-page .checkout-wrapper {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.payment-page .checkout-left {
  flex: 1;
  background: #ffffff;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
}

.payment-page .checkout-left-inner {
  width: 100%;
  max-width: 520px;
  padding: 48px 0 80px;
}

.payment-page .checkout-right {
  width: 38%;
  max-width: 480px;
  background: #f5f5f5;
  border-left: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-start;
  padding: 0 40px;
}

.payment-page .checkout-right-inner {
  width: 100%;
  max-width: 400px;
  padding: 48px 0 80px;
}

/* ============================================================
   Logo
   ============================================================ */

.payment-page .co-logo {
  margin-bottom: 24px;
}

.payment-page .co-logo a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.payment-page .co-logo img {
  height: 32px;
  width: auto;
}

.payment-page .co-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

/* ============================================================
   Breadcrumb
   ============================================================ */

.payment-page .co-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.payment-page .co-breadcrumb svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.payment-page .co-breadcrumb-link {
  color: #7C3AED;
  text-decoration: none;
  font-size: 13px;
}

.payment-page .co-breadcrumb-link:hover {
  text-decoration: underline;
}

.payment-page .co-breadcrumb-current {
  font-size: 13px;
  color: #1a1a2e;
  font-weight: 500;
}

.payment-page .co-breadcrumb-inactive {
  font-size: 13px;
  color: #9ca3af;
}

/* ============================================================
   Sections
   ============================================================ */

.payment-page .co-section {
  margin-bottom: 28px;
}

.payment-page .co-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* ============================================================
   Form fields
   ============================================================ */

.payment-page .co-field {
  margin-bottom: 8px;
}

.payment-page .co-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-page .co-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.payment-page .co-input:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.07);
}

.payment-page .co-input::placeholder {
  color: #9ca3af;
}

/* ============================================================
   Actions
   ============================================================ */

.payment-page .co-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-page .co-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7C3AED;
  text-decoration: none;
  transition: color 0.15s;
}

.payment-page .co-back-link:hover {
  text-decoration: underline;
}

.payment-page .co-continue-btn {
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.1s;
}

.payment-page .co-continue-btn:hover {
  background: linear-gradient(135deg, #6D28D9, #9333ea);
  opacity: 0.92;
}

.payment-page .co-continue-btn:active {
  transform: scale(0.99);
}

.payment-page .co-continue-btn:disabled {
  background: #c0b8d0;
  cursor: not-allowed;
}

/* ============================================================
   Legal text
   ============================================================ */

.payment-page .co-legal-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 24px 0 0;
}

.payment-page .co-legal {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

.payment-page .co-legal a {
  color: #6B7280;
  text-decoration: underline;
  transition: color 0.15s;
}

.payment-page .co-legal a:hover {
  color: #1a1a2e;
}

/* ============================================================
   Right panel: Summary
   ============================================================ */

.payment-page .co-summary-toggle {
  display: none;
}

.payment-page .co-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.payment-page .co-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-page .co-item-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.payment-page .co-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.payment-page .co-item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #6B7280;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-page .co-item-info {
  flex: 1;
  min-width: 0;
}

.payment-page .co-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.payment-page .co-item-sub {
  font-size: 12px;
  color: #9ca3af;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.payment-page .co-item-price {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  flex-shrink: 0;
}

.payment-page .co-summary-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 16px 0;
}

/* Totals */
.payment-page .co-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-page .co-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #6B7280;
}

.payment-page .co-total-row span:last-child {
  font-weight: 500;
  color: #1a1a2e;
}

.payment-page .co-discount-label { color: #16a34a; }
.payment-page .co-discount-value { color: #16a34a !important; }

.payment-page .co-summary-heading {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.payment-page .co-grand-total {
  font-size: 15px;
  color: #1a1a2e;
}

.payment-page .co-grand-total span {
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-size: 15px;
}

/* ============================================================
   Empty cart overlay
   ============================================================ */

.payment-page .empty-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 51, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-page .empty-cart-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(34, 34, 51, 0.15);
}

.payment-page .empty-cart-icon {
  color: #7C3AED;
  margin-bottom: 16px;
}

.payment-page .empty-cart-modal h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.payment-page .empty-cart-modal p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.payment-page .empty-cart-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.payment-page .empty-cart-btn:hover {
  opacity: 0.9;
}

/* ============================================================
   Info summary card
   ============================================================ */

.payment-page .pm-info-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(26, 26, 46, 0.04);
}

.payment-page .pm-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
}

.payment-page .pm-info-label {
  font-size: 11px;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 56px;
  flex-shrink: 0;
}

.payment-page .pm-info-value {
  flex: 1;
  font-size: 13px;
  color: #1a1a2e;
  line-height: 1.4;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-page .pm-info-change {
  font-size: 12px;
  color: #7C3AED;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: 500;
  transition: opacity 0.15s;
}

.payment-page .pm-info-change:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.payment-page .pm-info-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}

/* ============================================================
   Secure note
   ============================================================ */

.payment-page .pm-secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #6B7280;
  margin-bottom: 14px;
  font-weight: 500;
}

.payment-page .pm-secure-note svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================================
   Payment box
   ============================================================ */

.payment-page .pm-payment-box {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(26, 26, 46, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-page .pm-payment-box:focus-within {
  border-color: #c0bdba;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.08);
}

.payment-page .pm-tab-content {
  padding: 20px 20px 8px;
}

.payment-page .pm-card-number-wrap {
  position: relative;
}

.payment-page .pm-card-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.payment-page .pm-card-icon {
  border-radius: 3px;
  display: block;
  opacity: 0.8;
}

.payment-page #cardNumber {
  padding-right: 84px;
}

.payment-page .pm-cvv-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.payment-page .pm-cvv-wrap .co-input {
  padding-right: 36px;
}

.payment-page .pm-cvv-info-wrap {
  position: absolute;
  right: 12px;
  display: inline-flex;
  align-items: center;
}

.payment-page .pm-cvv-icon {
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.15s;
}

.payment-page .pm-cvv-icon:hover {
  color: #6B7280;
}

.payment-page .pm-cvv-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #1a1a2e;
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: normal;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.payment-page .pm-cvv-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 4px;
  border: 5px solid transparent;
  border-top-color: #1a1a2e;
}

.payment-page .pm-cvv-info-wrap:hover .pm-cvv-tooltip {
  display: block;
}

/* ============================================================
   Order confirmed screen
   ============================================================ */

.payment-page .pm-confirmed-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 24px;
}

.payment-page .pm-confirmed-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(26, 26, 46, 0.12);
  animation: pm-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  overflow: hidden;
}

.payment-page .pm-confirmed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #7C3AED, #a855f7);
}

@keyframes pm-pop-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.payment-page .pm-confirmed-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.payment-page .pm-confirmed-icon svg {
  color: #d97706;
}

.payment-page .pm-confirmed-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.payment-page .pm-confirmed-thankyou {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.payment-page .pm-confirmed-card p {
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 28px;
}

.payment-page .pm-confirmed-order {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.payment-page .pm-confirmed-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #6B7280;
  margin-bottom: 6px;
}

.payment-page .pm-confirmed-order-row:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
}

.payment-page .pm-confirmed-order-row span:last-child {
  font-weight: 500;
  color: #1a1a2e;
}

.payment-page .pm-confirmed-order-row:last-child span:last-child {
  font-weight: 700;
}

.payment-page .pm-confirmed-order-num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 20px;
  display: inline-block;
}

.payment-page .pm-continue-shopping-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7C3AED, #a855f7);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.1s;
}

.payment-page .pm-continue-shopping-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.payment-page .pm-continue-shopping-btn:active {
  transform: scale(0.99);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .payment-page .checkout-wrapper {
    flex-direction: column;
  }

  .payment-page .checkout-left {
    justify-content: center;
    padding: 0 24px;
    order: 1;
  }

  .payment-page .checkout-left-inner {
    max-width: 640px;
    padding: 32px 0 60px;
  }

  .payment-page .checkout-right {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #e0e0e0;
    justify-content: center;
    padding: 24px 0 0;
    background: #f5f5f5;
    order: 2;
  }

  .payment-page .checkout-right-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
  }

  .payment-page .co-summary-toggle {
    display: none;
  }

  .payment-page .co-summary-body {
    display: block;
    padding: 20px 0;
  }

  .payment-page .co-logo {
    display: block;
  }

  .payment-page .co-summary-heading {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .payment-page .checkout-left {
    padding: 0 16px;
  }

  .payment-page .checkout-right-inner {
    padding: 0 16px;
  }

  .payment-page .co-field-row {
    grid-template-columns: 1fr;
  }

  .payment-page .co-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .payment-page .co-continue-btn {
    text-align: center;
  }

  .payment-page .co-back-link {
    justify-content: center;
  }

  .payment-page .pm-info-value {
    white-space: normal;
  }

  .payment-page .pm-confirmed-card {
    padding: 40px 24px 36px;
  }
}

/* ============================================================
   order confirmed

   ============================================================ */

.oc-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #222233;
  background: #FFFEF7;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  box-sizing: border-box;
}

.oc-page *, .oc-page *::before, .oc-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.oc-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(34, 34, 51, 0.08);
  animation: oc-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  overflow: hidden;
}

@keyframes oc-pop-in {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Logo */

.oc-logo {
  margin-bottom: 24px;
}

.oc-logo img {
  height: 48px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Text */

.oc-title {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.oc-body {
  text-align: left;
  margin-bottom: 32px;
}

.oc-body p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 8px;
}

.oc-body .oc-highlight {
  color: #222233;
  font-weight: 600;
}

.oc-body .oc-enjoy {
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 600;
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button */

.oc-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF1493, #3A5FCD);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.15s;
}

.oc-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.oc-btn:active {
  transform: scale(0.98);
}

/* Responsive */

@media (max-width: 560px) {
  .oc-container {
    padding: 40px 24px 36px;
  }

  .oc-title {
    font-size: 22px;
  }
}


/* ============================================================
  リンク期限ぎれたときのページ

   ============================================================ */


.expired-icon {
  text-align: center;
  margin-bottom: 20px;
}

.expired-description {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 28px;
}

.expired-footer {
  margin-top: 32px;
  text-align: center;
}

.expired-footer p {
  font-size: 13px;
  color: #6B7280;
}

.expired-footer a {
  color: var(--hot-pink, #FF1493);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.expired-footer a:hover {
  opacity: 0.8;
}

/* ============================================================
  マイページページ

   ============================================================ */

.mypage {
  min-height: 100vh;
  background: var(--rice-white, #FFFEF7);
  /* overflow-y: scroll; */
}

/* Header */
.mypage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #F3F0EB;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.mypage-logo {
  display: flex;
  align-items: center;
}

.mypage-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.mypage-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mypage-header-back-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray, #6B7280);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mypage-header-back-link:hover {
  color: var(--bright-navy, #3A5FCD);
}

/* Logout hover dropdown */
.mypage-logout-wrapper {
  position: relative;
}

.mypage-header-signout-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #E5E7EB;
  background: none;
  border-radius: 8px;
  color: var(--warm-gray, #6B7280);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mypage-header-signout-trigger:hover {
  border-color: var(--bright-navy, #3A5FCD);
  color: var(--bright-navy, #3A5FCD);
  background: #F0F4FF;
}

.mypage-logout-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  min-width: 180px;
  z-index: 200;
}

.mypage-logout-wrapper:hover .mypage-logout-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mypage-logout-dropdown p {
  font-size: 12px;
  color: var(--warm-gray, #6B7280);
  margin-bottom: 10px;
}

.mypage-logout-confirm-btn {
  width: 100%;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--hot-pink, #FF1493), var(--bright-navy, #3A5FCD));
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mypage-logout-confirm-btn:hover {
  opacity: 0.85;
}

/* Layout */
.mypage-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.mypage-sidebar {
  position: sticky;
  top: 100px;
}

.mypage-sidebar-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-black, #222233);
  padding: 0 16px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #F0EDE8;
}

.mypage-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mypage-nav-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: none;
  background: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mypage-nav-item:hover {
  background: #F0F4FF;
  color: var(--bright-navy, #3A5FCD);
}

.mypage-nav-item.active {
  background: linear-gradient(135deg, var(--hot-pink, #FF1493), var(--bright-navy, #3A5FCD));
  color: #fff;
  font-weight: 600;
}

/* Main Content */
.mypage-main {
  min-height: 500px;
}


.mypage-tab {
  display: block;
  animation: mypage-fadeIn 0.25s ease;
}

@keyframes mypage-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mypage-dashboard-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-black, #222233);
  margin-bottom: 32px;
}

/* Dashboard Sections */
.mypage-dashboard-section {
  margin-bottom: 36px;
}

.mypage-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bright-navy, #3A5FCD);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Subscription Card */
.mypage-subscription-card {
  background: #fff;
  border: 1px solid #F0EDE8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mypage-sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mypage-sub-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray, #6B7280);
}

.mypage-sub-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-black, #222233);
}

.mypage-sub-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
}

.mypage-sub-badge.active {
  background: #D1FAE5;
  color: #059669;
}

.mypage-sub-badge.inactive {
  background: #F0F4FF;
  color: var(--bright-navy, #3A5FCD);
}

.mypage-sub-badge.cancelled {
  background: #FEF2F2;
  color: #DC2626;
}

/* Subscription Timezone Note */
.mypage-sub-timezone-note {
  font-size: 11px;
  color: #9CA3AF;
  margin: 0;
  padding: 0;
}

/* Subscription Cancel Accordion */
.mypage-sub-cancel-accordion {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #F0EDE8;
}

.mypage-sub-cancel-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.mypage-sub-cancel-toggle:hover {
  color: #6B7280;
}

.mypage-sub-cancel-toggle svg {
  transition: transform 0.2s ease;
}

.mypage-sub-cancel-toggle.open svg {
  transform: rotate(180deg);
}

.mypage-sub-cancel-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.mypage-sub-cancel-body.open {
  max-height: 200px;
  padding: 14px 0 4px;
}

.mypage-sub-cancel-notice {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 12px;
  line-height: 1.5;
}

.mypage-btn-sub-cancel {
  padding: 8px 16px;
  background: none;
  border: 1px solid #D1D5DB;
  color: #6B7280;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mypage-btn-sub-cancel:hover {
  border-color: #EF4444;
  color: #EF4444;
}


/* Orders Table */
.mypage-table-wrapper {
  background: #fff;
  border: 1px solid #F0EDE8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mypage-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mypage-orders-table thead {
  background: #F8F9FC;
}

.mypage-orders-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 1px solid #F0EDE8;
}

.mypage-orders-table td {
  padding: 14px 16px;
  color: #4B5563;
  border-bottom: 1px solid #FAF8F5;
}

.mypage-orders-table tbody tr:last-child td {
  border-bottom: none;
}

.mypage-orders-table tbody tr:hover {
  background: #FAFAFF;
}

.mypage-empty-row td {
  text-align: center;
  padding: 32px 16px;
  color: #9CA3AF;
  font-style: italic;
}

.mypage-order-status {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.mypage-order-status.completed {
  background: #D1FAE5;
  color: #059669;
}

.mypage-order-status.pending {
  background: #FEF3C7;
  color: #D97706;
}

.mypage-order-status.cancelled {
  background: #FEF2F2;
  color: #DC2626;
}

.mypage-btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid #E5E7EB;
  background: none;
  border-radius: 6px;
  color: var(--bright-navy, #3A5FCD);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mypage-btn-pdf:hover {
  border-color: var(--bright-navy, #3A5FCD);
  background: #F0F4FF;
}

/* Settings Forms */
/* Profile Email Display */
.mypage-profile-email-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: #FAF8F5;
  border: 1px solid #F0EDE8;
  border-radius: 10px;
}

.mypage-profile-email-label {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mypage-profile-email-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-black, #222233);
}

.mypage-settings-form {
  background: #fff;
  border: 1px solid #F0EDE8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mypage-settings-form--vertical .mypage-form-field.full {
  max-width: 100%;
}

.mypage-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mypage-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mypage-form-field.full {
  grid-column: 1 / -1;
}

.mypage-form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--warm-gray, #6B7280);
}

.mypage-form-field input {
  padding: 10px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ink-black, #222233);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.mypage-form-field input:focus {
  border-color: var(--bright-navy, #3A5FCD);
  box-shadow: 0 0 0 3px rgba(58, 95, 205, 0.08);
  background: #fff;
}

.mypage-form-field input:disabled {
  background: #FAF8F5;
  color: #9CA3AF;
  cursor: not-allowed;
}

.mypage-form-field input::placeholder {
  color: #C0C5CF;
}

.mypage-form-field select {
  padding: 10px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ink-black, #222233);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.mypage-form-field select:focus {
  border-color: var(--bright-navy, #3A5FCD);
  box-shadow: 0 0 0 3px rgba(58, 95, 205, 0.08);
  background-color: #fff;
}

.mypage-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.mypage-btn-save {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--hot-pink, #FF1493), var(--bright-navy, #3A5FCD));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.mypage-btn-save:hover {
  opacity: 0.85;
}

.mypage-btn-save:active {
  transform: scale(0.97);
}

.mypage-btn-save:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mypage-save-status {
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mypage-save-status.show {
  opacity: 1;
}

/* Section Note */
.mypage-section-note {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Payment Display Card */
.mypage-payment-display-card {
  background: #fff;
  border: 1px solid #F0EDE8;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mypage-payment-card-icon {
  color: var(--bright-navy, #3A5FCD);
  flex-shrink: 0;
}

.mypage-payment-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mypage-payment-card-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-black, #222233);
}

.mypage-payment-card-sub {
  font-size: 12px;
  color: #9CA3AF;
}

/* Danger Section - Delete Account */
.mypage-danger-section {
  border-top: 1px solid #FEE2E2;
  padding-top: 36px;
}

.mypage-danger-title {
  color: #DC2626 !important;
}

.mypage-danger-card {
  background: #FFF5F5;
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 24px;
}

.mypage-danger-text {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 16px;
}

.mypage-btn-delete-account {
  padding: 10px 20px;
  background: none;
  border: 1.5px solid #EF4444;
  color: #EF4444;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mypage-btn-delete-account:hover {
  background: #EF4444;
  color: #fff;
}

/* Modal */
.mypage-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.mypage-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mypage-modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.mypage-modal-overlay.active .mypage-modal-content {
  transform: scale(1);
}

.mypage-modal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-black, #222233);
  margin-bottom: 10px;
}

.mypage-modal-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 24px;
}

.mypage-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.mypage-btn-cancel {
  padding: 10px 20px;
  background: #F3F4F6;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mypage-btn-cancel:hover {
  background: #E5E7EB;
}

.mypage-btn-confirm-delete {
  padding: 10px 20px;
  background: #EF4444;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mypage-btn-confirm-delete:hover {
  opacity: 0.85;
}











.mypage-modal-overlay-2 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.mypage-modal-overlay-2.active {
  opacity: 1;
  visibility: visible;
}

.mypage-modal-content-2 {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.mypage-modal-overlay-2.active .mypage-modal-content {
  transform: scale(1);
}

.mypage-modal-content-2 h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-black, #222233);
  margin-bottom: 10px;
}

.mypage-modal-content-2 p {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 24px;
}






/* FAQ */
/* FAQ Header */
.mypage-faq-header {
  margin-bottom: 32px;
}

.mypage-faq-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin-top: 8px;
  line-height: 1.5;
}

/* FAQ Accordion */
.mypage-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mypage-faq-item {
  background: #fff;
  border: 1px solid #E8ECF2;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.mypage-faq-item:hover {
  border-color: #CBD5E1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mypage-faq-item.open {
  border-color: #3A5FCD;
  box-shadow: 0 4px 20px rgba(58, 95, 205, 0.1);
}

.mypage-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.mypage-faq-toggle:hover {
  color: #3A5FCD;
}

.mypage-faq-item.open .mypage-faq-toggle {
  color: #3A5FCD;
}

.mypage-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F1F5F9;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mypage-faq-icon::before,
.mypage-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #64748B;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.mypage-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mypage-faq-item.open .mypage-faq-icon {
  background: #EEF2FF;
}

.mypage-faq-item.open .mypage-faq-icon::before,
.mypage-faq-item.open .mypage-faq-icon::after {
  background: #3A5FCD;
}

.mypage-faq-item.open .mypage-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.mypage-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mypage-faq-item.open .mypage-faq-answer {
  max-height: 400px;
}

.mypage-faq-answer-inner {
  padding: 0 24px 20px;
}

.mypage-faq-answer p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 10px;
  padding: 0 24px;
}

.mypage-faq-answer p:first-child {
  padding-top: 0;
  border-top: 1px solid #F1F5F9;
  margin-top: 0;
  padding-top: 16px;
}

.mypage-faq-answer p:last-child {
  margin-bottom: 0;
  padding-bottom: 4px;
}

.mypage-faq-answer ul {
  margin: 4px 0 0;
  padding: 0 24px 4px 44px;
  list-style: none;
}

.mypage-faq-answer ul li {
  font-size: 13.5px;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.mypage-faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CBD5E1;
}

/* FAQ Contact Section */
.mypage-faq-contact-section {
  margin-top: 48px;
}

.mypage-faq-contact-inner {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
}

.mypage-faq-contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mypage-faq-contact-header svg {
  color: #3A5FCD;
}

.mypage-faq-contact-header .mypage-section-title {
  margin: 0;
}

.mypage-faq-contact-section .mypage-section-note {
  margin-bottom: 20px;
  color: #64748B;
  font-size: 13.5px;
}

.mypage-faq-question-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mypage-faq-question-form .mypage-form-field input,
.mypage-faq-question-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mypage-faq-question-form textarea {
  resize: vertical;
  min-height: 120px;
}

.mypage-faq-question-form .mypage-form-field input:focus,
.mypage-faq-question-form textarea:focus {
  outline: none;
  border-color: #3A5FCD;
  box-shadow: 0 0 0 3px rgba(58, 95, 205, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .mypage-header {
    padding: 12px 16px;
  }

  .mypage-logo-img {
    height: 36px;
  }

  .mypage-layout {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 20px;
  }

  .mypage-sidebar {
    position: static;
  }

  .mypage-sidebar-user-name {
    display: none;
  }

  .mypage-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 4px;
  }

  .mypage-nav-item {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
  }

  .mypage-form-row {
    grid-template-columns: 1fr;
  }

  .mypage-settings-form {
    padding: 16px;
  }

  .mypage-subscription-card {
    padding: 16px;
  }

  .mypage-sub-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .mypage-sub-value {
    font-size: 13px;
  }

  .mypage-table-wrapper {
    border: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    overflow: visible;
  }

  .mypage-orders-table {
    display: block;
  }

  .mypage-orders-table thead {
    display: none;
  }

  .mypage-orders-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mypage-orders-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    background: #fff;
    border: 1px solid #F0EDE8;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .mypage-orders-table tbody tr:hover {
    background: #fff;
  }

  .mypage-orders-table td {
    padding: 0;
    border-bottom: none;
    font-size: 13px;
  }

  .mypage-orders-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
  }

  .mypage-orders-table td:nth-child(3) {
    grid-column: 1 / -1;
  }

  .mypage-orders-table td:last-child {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .mypage-dashboard-title {
    font-size: 18px;
  }

  .mypage-modal-content {
    padding: 24px;
  }

  .mypage-modal-actions {
    flex-direction: column;
  }

  .mypage-faq-toggle {
    padding: 16px;
  }

  .mypage-faq-answer p {
    padding: 0 16px;
  }

  .mypage-faq-answer p:first-child {
    padding-top: 12px;
  }

  .mypage-faq-answer ul {
    padding: 0 16px 4px 36px;
  }

  .mypage-faq-contact-inner {
    padding: 20px;
  }
}


/* Footer */
.mypage-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid #F0EDE8;
  background: #fff;
}

.mypage-footer p {
  font-size: 12px;
  color: #9CA3AF;
}

.mypage-footer a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.mypage-footer a:hover {
  color: #222233;
}




/*loading*/
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: spin 1s linear infinite;
  margin: auto;
}
  

.spinner2 {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin: auto;
}
  
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.payment-loading {
  animation: blink 2s infinite;
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.3; }
    100% { opacity: 1; }
}

