body{
  background:var(--color-bg);
  }
  /* ─────────────────────────────
     SECTION
  ───────────────────────────── */
  .makeover-section {
    padding: 80px 72px 72px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* HEADER */
  .makeover-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 8px;
  }
  
  .makeover-title {
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  .makeover-subtitle {
    font-size: 0.82rem;
    color: #888;
  }
  
  .makeover-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin-bottom: 40px;
  }
  
  /* ─────────────────────────────
     LAYOUT
  ───────────────────────────── */
  .gallery {
    display: flex;
    gap: 24px;
  }
  
  /* 左大圖 */
  .gallery-main {
    flex: 0 0 420px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
  }
  
  /* label */
  .gallery-befor {
    position: absolute;
    bottom: 12px;
    left: 25%;
    transform: translateX(-50%);
    font-size: 14px;
    color: white;
  }
  
  .gallery-after {
    position: absolute;
    bottom: 12px;
    left: 75%;
    transform: translateX(-50%);
    font-size: 14px;
    color: white;
  }
  
  
  /* ─────────────────────────────
     右滑動區
  ───────────────────────────── */
  .gallery-side {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .gallery-side::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-track {
    display: flex;
    gap: 16px;
  }
  
  /* 小圖 */
  .gallery-thumb {
    flex: 0 0 auto;
    width: 150px;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: .3s;
  }
  
  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 35%;
  }
  
  /* hover */
  .gallery-thumb:hover {
    transform: translateY(-6px);
  }
  

  /* 彩妝紙圖 */
  .style-carousel {
    padding: 20px 0;
    overflow: hidden;
  }
  
  .carousel-title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color:var(--color-text-md);
  }
  
  /* 外框 */
  .carousel-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  /* 軌道 */
  .carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
  }
  
  /* 卡片 */
  .carousel-item {
    flex: 0 0 auto;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .carousel-item img {
    width: 100%;
    display: block;
  }
  

  /* 價格 */
  .plan-section {
    background: var(--color-beige-lt);
    padding: 72px 24px 80px;
    text-align: center;
  }
   
  /* ── Title ── */
  .plan-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 20px;
  }
   
  /* ── Description ── */
  .plan-desc {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-md);
    letter-spacing: 0.04em;
    line-height: 2;
    margin: 0 auto 20px;
  }
   
  /* ── Badges ── */
  .plan-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
  }
   
  .plan-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--color-text-md);
    letter-spacing: 0.04em;
  }
   
  .plan-badge::before {
    content: '✓';
    font-size: 0.78rem;
    color: var(--color-text-md);
    flex-shrink: 0;
  }
   
  /* ── Price ── */
  .plan-price {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin-bottom: 32px;
  }
   

  .price {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: var(--color-text);
  }
  
  .label {
    font-size: 18px;
    color: var(--color-text-md);
  }
  /* ── CTA Button ── */
  .plan-cta {
    display: inline-block;
    padding: 16px 52px;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.2s;
  }
   
  .plan-cta:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-1px);
  }
   
  .plan-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  /* ── Section ── */
  .sharing-section {
    padding: 80px 72px 72px;
    max-width: 1400px;
  }
   
  /* ── Header ── */
  .sharing-header {
    margin-bottom: 8px;
  }
   
  .sharing-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text);
  }
   
  .sharing-divider {
    border: none;
    border-top: 1px solid var(--color-line);
    margin-bottom: 36px;
  }
   
  /* ── Cards ── */
  .sharing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
   
  /* ── Card ── */
  .sharing-card {
    background: var(--color-beige-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.25s;
  }
   
  .sharing-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
   
  /* alternate: odd = image left, even = image right */
  .sharing-card:nth-child(even) {
    flex-direction: row-reverse;
  }
   
  /* ── Left: IG embed video ── */
  .card-embed {
    width: 260px;
    height: 260px;
    overflow: hidden;
    position: relative;
  }
  
  .card-embed iframe {
    position: absolute;
    top: -80px;   
    left: -40px;  
  
    width: 340px;
    height: 540px;
    border: none;
  }
  .sharing-card:nth-child(odd) .card-embed {
    border-radius: 10px 0 0 10px;
  }
  .sharing-card:nth-child(even) .card-embed {
    border-radius: 0 10px 10px 0;
  }
   
  /* ── Text block ── */
  .card-text {
    flex: 1 1 0;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 180px;
  }
   
  .card-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-line);
  }
   
  .card-desc {
    font-family: var(--font-serif);
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--color-text-md);
    letter-spacing: 0.04em;
    line-height: 1.85;
    margin-top: 10px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* IG icon 小標 */
  .card-ig-label {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-lt);
    letter-spacing: 0.06em;
  }
   
  .card-ig-icon {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    flex-shrink: 0;
  }
  
  .page-end {
    text-align: center;
    font-size: 12px;
    color: #b5aca4;
    margin-top: 40px;
    padding-bottom: 30px;
  }

/* ══════════════════════════════
   RWD — 平板 (≤ 1024px)
══════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Gallery ── */
  .makeover-section {
    padding: 64px 40px 56px;
  }

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

  .gallery-main {
    flex: none;
    width: 100%;
    height: 70vw;
  }

  .gallery-thumb {
    height: 30vw;
    width: 100px;
  }

  /* ── Plan ── */
  .plan-section {
    padding: 56px 40px 64px;
  }

  .plan-title {
    font-size: 1.7rem;
  }

  /* ── Sharing ── */
  .sharing-section {
    padding: 64px 40px 56px;
  }

  .card-embed {
    width: 220px;
    height: 320px;
  }

  .card-embed iframe {
    width: 300px;
    height: 480px;
    top: -60px;
    left: -30px;
  }
}


/* ══════════════════════════════
   RWD — 手機 (≤ 640px)
══════════════════════════════ */
@media (max-width: 640px) {

  /* ── Gallery ── */
  .makeover-section {
    padding: 80px 20px 40px;
  }

  .makeover-header {
    flex-direction: column;
    gap: 4px;
  }

  .makeover-title {
    font-size: 1.3rem;
  }

  .makeover-subtitle {
    font-size: 0.75rem;
  }

  .gallery-main {
    height: 80vw;
    border-radius: 12px;
  }

  .gallery-side {
    width: 100%;
  }

  .gallery-thumb {
    height: 28vw;
    width: 50px;
    border-radius: 10px;
  }

  .gallery-thumb img {
    object-fit: cover;
    object-position:100%;
    transform: scale(1.1);
    transform-origin: center top;
  }

  /* ── Plan ── */
  .plan-section {
    padding: 48px 24px 56px;
  }

  .plan-title {
    font-size: 1.4rem;
  }

  .plan-desc {
    font-size: 0.88rem;
  }

  .plan-price {
    font-size: 2rem;
  }

  .plan-cta {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
  }

  /* ── Sharing ── */
  .sharing-section {
    padding: 48px 20px 40px;
  }

  .sharing-card {
    flex-direction: column !important;
    border-radius: 10px;
  }

  .sharing-card:nth-child(even) {
    flex-direction: column !important;
  }

  .card-embed {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .card-embed iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 500px;
  }

  .sharing-card:nth-child(even) .card-embed {
    border-radius: 10px 10px 0 0 !important;
  }

  .card-text {
    padding: 16px 20px;
    min-height: unset;
  }

  .card-title {
    font-size: 0.92rem;
  }

  .card-desc {
    font-size: 0.78rem;
  }
}