/* ===================================================================
   theme-pick.css — "Hot Pink Pop" theme for pick.haloprice.com
   Fashion wanita. Fuchsia #ec2d78 + putih. Playful, bold, kontras.
   Loaded AFTER style.css → overrides base template look.
   =================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --pk-pink:      #ec2d78;   /* accent fuchsia */
  --pk-pink-dark: #c9205f;   /* hover / active */
  --pk-pink-soft: #ffd1e3;   /* soft pink borders / bg */
  --pk-pink-tint: #fff2f7;   /* very light pink wash */
  --pk-ink:       #1a1a1a;   /* text */
  --pk-radius:    16px;
}

/* ---- Typography: Japanese-friendly bold sans ---- */
body {
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif !important;
  color: var(--pk-ink);
}
h1, h2, h3, h4, h5, .blog-heading, .blog-heading-link {
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
}

/* ================= Cards (product/blog grid) ================= */
.single-blog {
  border: 1px solid var(--pk-pink-soft);
  border-radius: var(--pk-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(236, 45, 120, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.single-blog:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(236, 45, 120, .20);
  border-color: var(--pk-pink);
}
.single-blog .blog-image { overflow: hidden; }
.single-blog .blog-image img {
  transition: transform .5s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.single-blog:hover .blog-image img { transform: scale(1.06); }
.single-blog .blog-text { padding: 18px 20px 22px; }

.blog-heading-link { color: var(--pk-ink) !important; }
.blog-heading-link:hover { color: var(--pk-pink) !important; }

/* ================= Read-more button (続きを読む) ================= */
.btn-primary.blog-btn {
  background: var(--pk-pink) !important;
  border: 2px solid var(--pk-pink) !important;
  color: #fff !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(236, 45, 120, .28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary.blog-btn:hover {
  background: var(--pk-pink-dark) !important;
  border-color: var(--pk-pink-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 32, 95, .34);
}

/* generic pill buttons */
.btn-primary {
  border-radius: 30px !important;
  font-weight: 700 !important;
}
.btn-primary:hover { color:#fff !important; }

/* ================= Pagination ================= */
.pro-pagination-style ul li a {
  border-radius: 10px;
  transition: all .2s ease;
  font-weight: 600;
}
.pro-pagination-style ul li a.active,
.pro-pagination-style ul li a:hover {
  background: var(--pk-pink) !important;
  border-color: var(--pk-pink) !important;
  color: #fff !important;
}

/* ================= Header / nav accents ================= */
header .main-menu ul li a:hover { color: var(--pk-pink) !important; }
a { color: var(--pk-pink); }
a:hover { color: var(--pk-pink-dark); }

/* ================= Article page (/pd) ================= */
.blog-description h1,
.single-blog-post h1 {
  font-size: 2rem;
  line-height: 1.35;
  padding-bottom: .5em;
  border-bottom: 3px solid var(--pk-pink-soft);
  margin-bottom: .8em;
}
.blog-description h2 {
  position: relative;
  padding: 10px 0 10px 16px;
  margin-top: 1.6em;
  border-left: 5px solid var(--pk-pink);
  background: linear-gradient(90deg, var(--pk-pink-tint), transparent);
  border-radius: 0 8px 8px 0;
  font-size: 1.4rem;
}
.blog-description img.product-header-image,
.blog-description .main-product-image img {
  border-radius: var(--pk-radius);
}
.blog-description img.product-body-image {
  border-radius: 12px;
  border: 3px solid var(--pk-pink-soft);
}

/* Table of contents box */
.toc {
  background: var(--pk-pink-tint);
  border: 1px solid var(--pk-pink-soft);
  border-radius: var(--pk-radius);
  padding: 18px 22px;
  margin: 22px 0;
}
.toc .toc-title {
  font-weight: 800;
  color: var(--pk-pink-dark);
  margin-bottom: .4em;
  font-size: 1.05rem;
}
.toc ul { margin: 0; padding-left: 1.1em; }
.toc ul li { margin: .3em 0; }
.toc a { color: var(--pk-ink); text-decoration: none; }
.toc a:hover { color: var(--pk-pink); text-decoration: underline; }

/* Moshimo / Amazon CTA button inside article */
#action_button_1 a {
  display: inline-block;
  background: var(--pk-pink);
  color: #fff !important;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(236, 45, 120, .28);
  transition: transform .2s ease, background .2s ease;
}
#action_button_1 a:hover {
  background: var(--pk-pink-dark);
  transform: translateY(-2px);
}

/* Section headings on list page */
.blog-heading { font-size: 1.05rem; line-height: 1.5; }

/* ===================================================================
   LAYOUT REDESIGN — header, hero, grid, cards, sidebar
   =================================================================== */

/* ---------- Header ---------- */
.header-area { display: none; } /* buang header lama kalau tersisa */
.pick-header { position: sticky; top: 0; z-index: 1000; }
.pick-topstrip {
  background: linear-gradient(90deg, var(--pk-pink), #ff7ab0);
  color: #fff; font-size: 13px; font-weight: 600; text-align: center;
  padding: 7px 0; letter-spacing: .02em;
}
.pick-header-main {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--pk-pink-soft);
  box-shadow: 0 2px 14px rgba(236,45,120,.06);
}
.pick-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 20px;
}
.pick-brand { display: inline-flex; align-items: baseline; text-decoration: none; }
.pick-brand-mark {
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 30px;
  color: var(--pk-ink); letter-spacing: -.03em;
}
.pick-brand-dot { color: var(--pk-pink); font-size: 34px; font-weight: 800; line-height: 0; }
.pick-brand-sub {
  margin-left: 8px; font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pk-pink); align-self: center;
}
.pick-nav ul { display: flex; gap: 6px; margin: 0; padding: 0; list-style: none; }
.pick-nav a {
  display: inline-block; padding: 8px 16px; border-radius: 22px;
  font-size: 14px; font-weight: 600; color: var(--pk-ink); text-decoration: none;
  transition: all .2s ease;
}
.pick-nav a:hover { background: var(--pk-pink-tint); color: var(--pk-pink-dark); }
.pick-nav-toggle {
  display: none; background: none; border: 0; font-size: 24px; color: var(--pk-pink); cursor: pointer;
}

/* ---------- Hero ---------- */
.pick-hero {
  background:
    radial-gradient(1200px 300px at 90% -20%, rgba(255,209,227,.7), transparent),
    linear-gradient(180deg, var(--pk-pink-tint), #ffffff);
  padding: 64px 0 54px; text-align: center;
  border-bottom: 1px solid var(--pk-pink-soft);
}
.pick-hero-kicker {
  color: var(--pk-pink); font-weight: 700; letter-spacing: .28em;
  font-size: 12px; margin: 0 0 14px;
}
.pick-hero-title {
  font-family: "Poppins","Zen Kaku Gothic New",sans-serif;
  font-weight: 800; font-size: clamp(28px, 5vw, 46px); line-height: 1.25;
  color: var(--pk-ink); margin: 0 0 16px; border: 0;
}
.pick-hero-title span { color: var(--pk-pink); }
.pick-hero-sub { color: #6a5f63; font-size: 15px; margin: 0 auto; max-width: 560px; }

/* ---------- Main + section head ---------- */
.pick-main { padding: 48px 0 80px; background: #fff; }
.pick-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.pick-section-head h2 {
  font-weight: 800; font-size: 22px; margin: 0; color: var(--pk-ink); white-space: nowrap;
  border: 0; padding: 0; background: none;
}
.pick-section-head h2::before {
  content: ""; display: inline-block; width: 10px; height: 22px; margin-right: 10px;
  background: var(--pk-pink); border-radius: 3px; vertical-align: -3px;
}
.pick-section-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--pk-pink-soft), transparent); }

/* ---------- Product grid + editorial card ---------- */
.pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 575px){ .pick-grid { grid-template-columns: 1fr; } }

.pick-card {
  background: #fff; border: 1px solid #f1e2e8; border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 18px rgba(236,45,120,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pick-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(236,45,120,.18); border-color: var(--pk-pink); }
.pick-card-media { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; }
.pick-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pick-card:hover .pick-card-media img { transform: scale(1.07); }
.pick-card-badge {
  position: absolute; top: 12px; left: 12px; background: var(--pk-pink); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; padding: 4px 10px; border-radius: 20px;
  box-shadow: 0 4px 10px rgba(236,45,120,.35);
}
.pick-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pick-card-title { font-size: 15px; font-weight: 700; line-height: 1.5; margin: 0 0 8px; }
.pick-card-title a { color: var(--pk-ink); text-decoration: none; }
.pick-card-title a:hover { color: var(--pk-pink); }
.pick-card-excerpt { font-size: 13px; color: #7a7075; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.pick-card-link {
  align-self: flex-start; font-size: 13px; font-weight: 700; color: var(--pk-pink);
  text-decoration: none; padding: 7px 16px; border: 2px solid var(--pk-pink); border-radius: 22px;
  transition: all .2s ease;
}
.pick-card-link span { transition: margin .2s ease; }
.pick-card-link:hover { background: var(--pk-pink); color: #fff; }
.pick-card-link:hover span { margin-left: 4px; }

/* ---------- Pagination ---------- */
.pick-pagination { margin-top: 40px; }
.pick-pagination ul { display: flex; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.pick-pagination a, .pick-pagination .dots {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 12px;
  font-weight: 700; color: var(--pk-ink); text-decoration: none;
  border: 1px solid var(--pk-pink-soft); background: #fff; transition: all .2s ease;
}
.pick-pagination a:hover { border-color: var(--pk-pink); color: var(--pk-pink); }
.pick-pagination a.active { background: var(--pk-pink); border-color: var(--pk-pink); color: #fff; }
.pick-pagination .dots { border: 0; }

/* ---------- Right sidebar ---------- */
.pick-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
@media (max-width: 991px){ .pick-sidebar { position: static; margin-top: 40px; } }

.pick-ad-slot {
  position: relative; min-height: 90px; border: 2px dashed var(--pk-pink-soft);
  border-radius: 14px; background: var(--pk-pink-tint);
  display: flex; align-items: center; justify-content: center;
  color: #c9a3b3; font-size: 13px;
}
.pick-ad-slot:empty::after,
.pick-ad-slot:has(> .pick-ad-label:only-child)::after {
  content: "広告スペース (Moshimo)"; color: #cbb0bb; font-weight: 600;
}
.pick-ad-label {
  position: absolute; top: 6px; right: 8px; font-size: 10px; font-weight: 700;
  color: #b98ba0; letter-spacing: .1em;
}

.pick-widget { background: #fff; border: 1px solid var(--pk-pink-soft); border-radius: 18px; overflow: hidden; }
.pick-widget-title {
  margin: 0; padding: 16px 20px; font-size: 15px; font-weight: 800; color: #fff;
  background: linear-gradient(90deg, var(--pk-pink), #ff7ab0);
}
.pick-side-list { list-style: none; margin: 0; padding: 8px; }
.pick-side-item {
  display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px;
  text-decoration: none; transition: background .2s ease;
}
.pick-side-item:hover { background: var(--pk-pink-tint); }
.pick-side-thumb { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; }
.pick-side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pick-side-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pick-side-title { font-size: 13px; font-weight: 600; color: var(--pk-ink); line-height: 1.45; }
.pick-side-cta { font-size: 11px; font-weight: 700; color: var(--pk-pink); }

/* ---------- Responsive nav ---------- */
@media (max-width: 767px){
  .pick-nav { position: absolute; right: 12px; top: 100%; background: #fff; border: 1px solid var(--pk-pink-soft);
    border-radius: 14px; padding: 8px; box-shadow: 0 12px 30px rgba(236,45,120,.15); display: none; }
  .pick-nav.open { display: block; }
  .pick-nav ul { flex-direction: column; }
  .pick-nav-toggle { display: inline-block; }
  .pick-header-inner { position: relative; }
}

/* ---------- Footer polish ---------- */
.footer-area { background: #1a1418; color: #cbb7bf; margin-top: 0; }
.footer-area a { color: var(--pk-pink-soft); }
