/* BASIC css start */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
  
  * { margin:0; padding:0; box-sizing:border-box; font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; }
  body {
    background: #FBF8F2;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1C1410;
    overflow-x: hidden;
  }

  /*  HERO  */
  .hero {
    position: relative;
    min-height: 100vh;
    background: #1C0D08;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 150px 24px 120px;
    overflow: visible;
    max-width: 970px;
    margin: 0 auto;
  }
  .hero-deco {
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 800px 600px at 50% 0%, rgba(192,57,43,.25) 0%, transparent 60%), radial-gradient(ellipse 600px 800px at 80% 100%, rgba(201,150,58,.15) 0%, transparent 50%);
    z-index: 0;
  }
  .hero-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9963A, #F0C060, #C9963A, transparent);
    z-index: 1;
  }
  .hero-stamp {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201,150,58,.4);
    color: #F0C060;
    font-size: 11px;
    letter-spacing: .25em;
    padding: 7px 22px;
    border-radius: 2px;
    margin-bottom: 40px;
    animation: fadeUp .8s ease both;
  }
  .hero-stamp:before, .hero-stamp:after { content: '-'; font-size: 8px; opacity: .6; }
  .hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Pretendard', serif;
    font-size: clamp(38px, 7.5vw, 88px);
    font-weight: 900;
    color: #FBF8F2;
    line-height: 1.2;
    animation: fadeUp .9s .1s ease both;
    opacity: 0;
  }
  .hero-title .accent {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: .45em;
    font-weight: 300;
    letter-spacing: .1em;
    margin-bottom: 12px;
  }
  .hero-title .underline-word {
    position: relative;
    display: inline-block;
    color: #F0C060;
  }
  .hero-title .underline-word:after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E8624A, #C9963A);
    border-radius: 99px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,.55);
    line-height: 2;
    animation: fadeUp 1s .25s ease both;
    opacity: 0;
  }
  .hero-copy strong { color: #F0C060; }
  .hero-pills {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 1s .4s ease both;
    opacity: 0;
  }
  .hero-pill {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: .05em;
  }
  .hero-pill strong { color: #F0C060; }
  .hero-giftset-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 80px;
    object-fit: contain;
  }
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.25);
    font-size: 10px;
    letter-spacing: .2em;
    animation: fadeUp 1s .6s ease both;
    opacity: 0;
    z-index: 2;
  }
  .hero-scroll-bar {
    width: 1px; height: 48px;
    background: rgba(255,255,255,.15);
    animation: barDown 1.8s ease infinite;
  }

  /*  COMMON  */
  .section-label {
    font-size: 10px;
    letter-spacing: .3em;
    color: #C9963A;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
  }
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease;
  }
  .reveal.on { opacity: 1; transform: none; }

  /*  KEY MESSAGE  */
  .key-msg {
    background: #FFF9F0;
    padding: 120px 24px;
    text-align: center;
  }
  .key-msg h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 900;
    color: #8B2E2E;
    line-height: 1.4;
  }
  .key-msg h2 em { font-style: normal; color: #C9963A; display: block; }
  .rule {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, #E8624A, #C9963A);
    margin: 32px auto;
    border-radius: 99px;
  }
  .key-msg p {
    font-size: clamp(14px, 1.8vw, 17px);
    color: #4A3728;
    line-height: 2.2;
    max-width: 560px;
    margin: 0 auto;
  }

  /*  SELLING POINTS  */
  .why-section {
    background: #EDE6DA;
    padding: 100px 24px;
  }
  .why-section > .section-label,
  .why-section > h2 { text-align: center; }
  .why-section > h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: #1C1410;
    margin-bottom: 64px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 970px;
    margin: 0 auto;
  }
  .why-card {
    background: #FFF9F0;
    border-radius: 20px;
    padding: 40px 28px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
  .why-card-bar {
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
  }
  .c1 { background: linear-gradient(90deg, #E8624A, #C9963A); }
  .c2 { background: linear-gradient(90deg, #8B2E2E, #C0392B); }
  .c3 { background: linear-gradient(90deg, #3B5E3A, #7A9E72); }
  .c4 { background: linear-gradient(90deg, #C9963A, #F0C060); }
  .why-icon { width: 60px; height: 60px; margin: 0 auto 20px auto; display: block; object-fit: contain; }
  .why-card h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 18px; font-weight: 700;
    color: #8B2E2E; margin-bottom: 12px;
  }
  .why-card p { font-size: 13.5px; color: #8A7B6F; line-height: 1.9; }
  .tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
  .tag-list span {
    background: #EDE6DA; border-radius: 4px;
    padding: 4px 10px; font-size: 11px; color: #4A3728;
  }

  /*  PRODUCTS  */
  .products {
    position: relative;
    background: #FBF8F2;
    padding: 100px 24px;
  }
  .products-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 900px 500px at 50% 20%, rgba(201,150,58,.08) 0%, transparent 70%);
    z-index: 0;
  }
  .products > * { position: relative; z-index: 1; }
  .products > .section-label,
  .products > h2 { text-align: center; }
  .products > h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: #1C1410;
    margin-bottom: 80px;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 970px;
    margin: 0 auto;
  }
  .product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .product-card:hover { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(0,0,0,.15); }
  .product-img-wrap {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    padding-bottom: 100%;
  }
  .product-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .product-qty-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(28, 20, 16, 0.8);
    color: #FBF8F2;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
  }
  .product-body {
    padding: 36px 28px;
  }
  .product-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .product-tag span {
    font-size: 11px;
    letter-spacing: .2em;
    color: #C9963A;
    font-weight: 700;
    text-transform: uppercase;
  }
  .product-tag hr {
    flex: 1;
    border: none;
    border-top: 1px solid #EDE6DA;
  }
  .product-card h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #1C1410;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .pdesc {
    font-size: 13.5px;
    color: #8A7B6F;
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .product-contents {
    background: #F5EDD8;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.8;
    color: #4A3728;
    margin-bottom: 28px;
  }
  .product-contents strong {
    display: block;
    margin-bottom: 8px;
    color: #8B2E2E;
    font-weight: 700;
  }
  .point-list {
    margin-bottom: 28px;
  }
  .point-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #4A3728;
    line-height: 1.6;
  }
  .dot {
    width: 4px; height: 4px;
    background: #C9963A;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }
  .price-area {
    padding-bottom: 20px;
    border-bottom: 1px solid #EDE6DA;
    margin-bottom: 20px;
  }
  .price-main {
    font-family: 'Noto Serif KR', serif;
    font-size: 32px;
    font-weight: 900;
    color: #1C1410;
  }
  .price-main small {
    font-size: 16px;
    font-weight: 700;
    margin-left: 4px;
  }
  .price-point {
    font-size: 12px;
    color: #3B5E3A;
    margin-top: 8px;
  }
  .btn-buy {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #E8624A, #C0392B);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
  }
  .btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200, 57, 43, 0.3); }

  /*  FOOTER CTA  */
  .footer-cta {
    position: relative;
    min-height: 100vh;
    background: #1C0D08;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
  }
  .footer-cta-deco {
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 800px 600px at 50% 0%, rgba(192,57,43,.25) 0%, transparent 60%), radial-gradient(ellipse 600px 800px at 80% 100%, rgba(201,150,58,.15) 0%, transparent 50%);
    z-index: 0;
  }
  .footer-cta-title {
    position: relative;
    z-index: 2;
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: #FBF8F2;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .footer-cta-title .gold-text {
    display: block;
    color: #F0C060;
    font-size: 1.1em;
    font-weight: 900;
    margin-bottom: 12px;
  }
  .footer-cta-desc {
    position: relative;
    z-index: 2;
    font-size: clamp(12px, 1.8vw, 15px);
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 56px;
  }
  .footer-cta-btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
  }
  .footer-cta-btn {
    flex: 0 1 auto;
    min-width: auto;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    letter-spacing: .05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    white-space: nowrap;
  }
  .footer-cta-btn.primary {
    background: #C9963A;
    color: #1C0D08;
    border-color: #C9963A;
  }
  .footer-cta-btn.primary:hover {
    background: #F0C060;
    border-color: #F0C060;
  }
  .footer-cta-btn.secondary {
    background: transparent;
    color: #F0C060;
    border-color: #F0C060;
  }
  .footer-cta-btn.secondary:hover {
    background: rgba(240,192,96,.1);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes barDown {
    0%   { opacity:1; transform: scaleY(0); transform-origin: top; }
    50%  { opacity:1; transform: scaleY(1); transform-origin: top; }
    100% { opacity:0; transform: scaleY(1); transform-origin: top; }
  }

  @media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .footer-cta-btns { flex-direction: row; }
    .footer-cta-btn { min-width: auto; }
  }
/* BASIC css end */

