/* =========================================================
   01. RESET
========================================================= */

:root{
    --gold:#c9a45b;
    --gold-light:#e7cf94;
    --gold-dark:#8c6a2d;

    --black:#080909;
    --black-soft:#111212;

    --cream:#f6f4ef;
    --white:#ffffff;

    --text:#222;
    --gray:#777;

    --container:1480px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:
        "Pretendard",
        "Noto Sans KR",
        Arial,
        sans-serif;

    color:var(--text);
    background:var(--cream);

    overflow-x:hidden;
}

body.menu-open,
body.modal-open{
    overflow:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    border:0;
    background:none;
    cursor:pointer;
    /*font:inherit;*/
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:min(
        calc(100% - 80px),
        var(--container)
    );

    margin:0 auto;
}

.section{
    padding:130px 0;
}

.section-dark{
    background:#0c0d0e;
    color:#fff;
}

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:30px;

    margin-bottom:55px;
}

.section-title small{
    display:block;

    margin-bottom:12px;

    color:var(--gold);

    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    line-height:1.2;
    letter-spacing:-2px;
}

.section-title p{
    margin-top:16px;

    color:#777;

    font-size:18px;
    line-height:1.7;
}


/* =========================================================
   02. HEADER
========================================================= */

.header{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:
        background .3s,
        box-shadow .3s;
}

.header.scrolled{
    background:
        rgba(
            8,
            9,
            9,
            .96
        );

    box-shadow:
        0 5px 30px rgba(0,0,0,.25);
}

.header-inner{
    width:min(
        calc(100% - 70px),
        1680px
    );

    height:90px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.logo{
    display:flex;
    align-items:center;

    gap:12px;

    color:#fff;

    flex-shrink:0;
}

.logo-mark{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border:1px solid var(--gold);

    transform:rotate(45deg);
}

.logo-mark span{
    transform:rotate(-45deg);

    color:var(--gold);

    font-size:19px;
}

.logo-text{
    display:flex;
    flex-direction:column;

    line-height:1.1;
}

.logo-text strong{
    color:var(--gold-light);

    font-size:20px;
}

.logo-text small{
    margin-top:4px;

    color:#aaa;

    font-size:10px;
    letter-spacing:2px;
}

.pc-nav{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:30px;

    flex:1;
}

.pc-nav a{
    position:relative;

    color:
        rgba(
            255,
            255,
            255,
            .82
        );

    font-size:15px;
    font-weight:700;

    white-space:nowrap;

    transition:.25s;
}

.pc-nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.3s;
}

.pc-nav a:hover{
    color:var(--gold-light);
}

.pc-nav a:hover::after{
    width:100%;
}

.header-right{
    display:flex;
    align-items:center;

    gap:18px;
}

.header-phone{
    color:var(--gold-light);

    font-size:15px;
    font-weight:800;

    white-space:nowrap;
}

.hamburger{
    position:relative;

    width:50px;
    height:50px;

    display:grid;
    place-items:center;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    transition:.3s;
}

.hamburger:hover{
    border-color:var(--gold);
}

.hamburger span{
    position:absolute;

    width:21px;
    height:2px;

    background:var(--gold-light);

    transition:.3s;
}

.hamburger span:nth-child(1){
    transform:translateY(-7px);
}

.hamburger span:nth-child(3){
    transform:translateY(7px);
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
}


/* =========================================================
   03. MOBILE / OVERLAY MENU
========================================================= */

.menu-overlay{
    position:fixed;

    inset:0;

    z-index:900;

    background:
        rgba(
            0,
            0,
            0,
            .65
        );

    opacity:0;
    visibility:hidden;

    transition:.35s;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;

    top:0;
    right:-430px;

    z-index:950;

    width:min(
        100%,
        430px
    );

    height:100vh;

    padding:120px 50px 50px;

    background:#111;

    color:#fff;

    transition:.45s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    display:block;

    padding:19px 0;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );

    font-size:21px;
    font-weight:800;

    transition:.25s;
}

.mobile-menu a:hover{
    color:var(--gold);
    padding-left:10px;
}

.mobile-menu-bottom{
    margin-top:50px;

    padding-top:30px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );

    color:#aaa;

    line-height:1.9;

    font-size:15px;
}


/* =========================================================
   04. HERO
========================================================= */

.hero{
    position:relative;

    width:100%;
    height:100vh;
    min-height:760px;

    overflow:hidden;

    background:#050505;
}

.hero-track{
    position:relative;

    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;

    pointer-events:auto;

    z-index:2;
}

.hero-bg{
    position:absolute;

    inset:0;

    background-size:cover;
    background-position:center;

    transform:scale(1.08);

    transition:transform 7s ease;
}

.hero-slide.active .hero-bg{
    transform:scale(1);
}

.hero-slide::before{
    content:"";

    position:absolute;

    inset:0;

    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.93) 0%,
            rgba(0,0,0,.78) 32%,
            rgba(0,0,0,.25) 70%,
            rgba(0,0,0,.1) 100%
        );
}

.hero-slide::after{
    content:"";

    position:absolute;

    inset:0;

    z-index:1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.35),
            transparent 40%,
            rgba(0,0,0,.55)
        );
}

.hero-content{
    position:relative;

    z-index:3;

    width:min(
        calc(100% - 180px),
        1500px
    );

    height:100%;

    margin:auto;

    display:flex;
    align-items:center;
}

.hero-copy{
    max-width:760px;

    padding-top:70px;

    padding-left:24px;
    color:#fff;
}

.hero-copy small{
    display:block;

    margin-bottom:25px;

    color:var(--gold-light);

    font-size:16px;
    font-weight:800;
    letter-spacing:3px;
}

.hero-copy h1{
    font-size:clamp(
        60px,
        6vw,
        100px
    );

    font-weight:500;

    line-height:1.17;

    letter-spacing:-5px;
}

.hero-copy h1 strong{
    color:var(--gold-light);
}

.hero-copy p{
    margin-top:32px;

    color:
        rgba(
            255,
            255,
            255,
            .78
        );

    font-size:20px;
    line-height:1.8;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;

    min-width:210px;

    margin-top:45px;

    padding:18px 24px 18px 30px;

    border:
        1px solid
        rgba(
            220,
            185,
            112,
            .8
        );

    border-radius:50px;

    color:#fff;

    font-size:17px;
    font-weight:800;

    transition:.3s;
}

.hero-btn span{
    font-size:25px;
}

.hero-btn:hover{
    background:var(--gold);
    color:#111;
}

.hero-arrow{
    position:absolute;

    top:50%;

    z-index:10;

    width:68px;
    height:68px;

    border-radius:50%;

    border:
        1px solid
        rgba(
            215,
            179,
            102,
            .65
        );

    background:
        rgba(
            0,
            0,
            0,
            .25
        );

    color:#fff;

    font-size:40px;

    transform:translateY(-50%);

    transition:.3s;
}

.hero-arrow:hover{
    background:var(--gold);
    color:#111;
}

.hero-prev{
    left:35px;
}

.hero-next{
    right:35px;
}

.hero-pagination{
    position:absolute;

    z-index:10;

    left:50%;
    bottom:55px;

    transform:translateX(-50%);

    display:flex;
    align-items:center;

    gap:28px;
}

.hero-page{
    display:flex;
    align-items:center;

    gap:14px;

    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

.hero-page-number{
    font-size:15px;
    font-weight:800;
}

.hero-page.active{
    color:var(--gold-light);
}

.hero-progress-line{
    position:relative;

    display:block;

    width:68px;
    height:2px;

    overflow:hidden;

    background:
        rgba(
            255,
            255,
            255,
            .28
        );
}

.hero-progress-bar{
    position:absolute;

    top:0;
    left:0;

    width:0%;
    height:100%;

    background:var(--gold-light);
}


/* =========================================================
   05. BRAND
========================================================= */

.brand-grid{
    display:grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:70px;

    align-items:center;
}

.brand-image{
    position:relative;

    min-height:620px;

    overflow:hidden;

    border-radius:8px;

    background:
        url("https://images.unsplash.com/photo-1605100804763-247f67b3557e?auto=format&fit=crop&w=1500&q=90")
        center/cover;
}

.brand-image::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0,0,0,.55)
        );
}

.brand-badge{
    position:absolute;

    z-index:2;

    left:40px;
    bottom:40px;

    padding:25px;

    background:
        rgba(
            0,
            0,
            0,
            .75
        );

    border-left:
        3px solid
        var(--gold);
}

.brand-badge strong{
    display:block;

    color:#fff;

    font-size:30px;
}

.brand-badge span{
    display:block;

    margin-top:8px;

    color:#bbb;

    font-size:16px;
}

.brand-copy h2{
    font-size:50px;

    line-height:1.3;

    letter-spacing:-3px;
}

.brand-copy h2 strong{
    color:var(--gold-dark);
}

.brand-copy p{
    margin-top:28px;

    color:#666;

    font-size:19px;
    line-height:1.9;
}

.brand-stats{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;

    margin-top:50px;
}

.brand-stat{
    padding:25px 10px;

    border-top:
        1px solid #ddd;
}

.brand-stat strong{
    display:block;

    color:var(--gold-dark);

    font-size:30px;
}

.brand-stat span{
    display:block;

    margin-top:8px;

    color:#777;

    font-size:15px;
}


/* =========================================================
   06. PRODUCT SLIDER
========================================================= */

.product-area{
    position:relative;
}

.product-viewport{
    overflow:hidden;

    width:100%;
}

.product-track{
    display:flex;

    gap:18px;

    transition:transform .5s ease;
}

.product-card{
    flex:
        0 0
        calc(
            (100% - 90px) / 6
        );

    min-width:0;

    padding:20px;

    background:#fff;

    border:1px solid #e8e5de;

    border-radius:10px;

    box-shadow:
        0 8px 25px
        rgba(
            0,
            0,
            0,
            .04
        );

    transition:
        transform .3s,
        box-shadow .3s;
}

.product-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 18px 35px
        rgba(
            0,
            0,
            0,
            .1
        );
}

.product-image{
    position:relative;

    height:230px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8f7f4;

    border-radius:7px;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .5s;
}

.product-card:hover img{
    transform:scale(1.06);
}

.product-name{
    margin-top:20px;

    color:#333;

    font-size:16px;
    font-weight:700;
}

.product-price{
    margin-top:9px;

    color:var(--gold-dark);

    font-size:18px;
    font-weight:900;
}

.slider-controls{
    display:flex;

    gap:10px;
}

.round-arrow{
    width:54px;
    height:54px;

    border:1px solid #ddd;

    border-radius:50%;

    color:#333;

    font-size:26px;

    transition:.25s;
}

.round-arrow:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:#111;
}


/* =========================================================
   07. GENERAL PRODUCT TABS
========================================================= */

.tabs{
    display:flex;

    gap:8px;

    margin-bottom:25px;

    overflow-x:auto;

    scrollbar-width:none;
}

.tabs::-webkit-scrollbar{
    display:none;
}

.tab-btn{
    flex:1;

    min-width:130px;

    padding:17px 20px;

    border:
        1px solid
        #e5e1d8;

    border-radius:5px;

    background:#fff;

    color:#666;

    font-size:16px;
    font-weight:800;

    transition:.25s;
}

.tab-btn.active,
.tab-btn:hover{
    background:
        linear-gradient(
            135deg,
            #c39b4d,
            #e1c887
        );

    border-color:#c39b4d;

    color:#fff;
}

.product-tab-panel{
    display:none;
}

.product-tab-panel.active{
    display:block;
}


/* =========================================================
   08. SERVICE ICONS
========================================================= */

.service-bar{
    background:#101112;

    color:#fff;

    padding:55px 0;
}

.service-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;
}

.service-item{
    display:flex;

    align-items:center;

    gap:20px;
}

.service-icon{
    width:60px;
    height:60px;

    flex-shrink:0;

    display:grid;
    place-items:center;

    border:
        1px solid
        rgba(
            201,
            164,
            91,
            .55
        );

    border-radius:50%;

    color:var(--gold-light);

    font-size:26px;
}

.service-item strong{
    display:block;

    font-size:18px;
}

.service-item p{
    margin-top:7px;

    color:#aaa;

    font-size:14px;
}


/* =========================================================
   09. GOLD PURCHASE
========================================================= */

.gold-section{
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(
                160,
                117,
                37,
                .2
            ),
            transparent 30%
        ),
        #0d0e0f;

    color:#fff;
}

.gold-grid{
    display:grid;

    grid-template-columns:
        1.25fr
        .75fr;

    gap:25px;
}

.gold-info,
.gold-price-box{
    position:relative;

    min-height:430px;

    padding:50px;

    overflow:hidden;

    border:
        1px solid
        rgba(
            201,
            164,
            91,
            .28
        );

    border-radius:8px;
}

.gold-info{
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.7),
            rgba(0,0,0,.15)
        ),
        url("https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&w=1300&q=90")
        center/cover;
}

.gold-info::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.2)
        );
}

.gold-info > *{
    position:relative;

    z-index:1;
}

.gold-info h2,
.gold-price-box h3{
    font-size:38px;
}

.gold-info p{
    margin-top:18px;

    color:#ddd;

    font-size:17px;
    line-height:1.8;
}

.check-list{
    display:grid;

    gap:14px;

    margin-top:30px;

    list-style:none;
}

.check-list li{
    color:#e0d8c7;

    font-size:16px;
}

.check-list li::before{
    content:"✓";

    margin-right:10px;

    color:var(--gold);
}

.gold-price-box{
    background:
        rgba(
            255,
            255,
            255,
            .03
        );
}

.price-date{
    margin-top:10px;

    color:#888;

    font-size:14px;
}

.price-list{
    margin-top:28px;
}

.price-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:19px 0;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );
}

.price-row span{
    color:#ccc;

    font-size:17px;
}

.price-row strong{
    color:var(--gold-light);

    font-size:24px;
}


/* =========================================================
   10. CUSTOM / EVENT
========================================================= */

.promo-grid{
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:25px;
}

.promo-card{
    position:relative;

    min-height:420px;

    padding:50px;

    overflow:hidden;

    border-radius:10px;

    background:#fff;

    border:1px solid #e6e2da;
}

.promo-card h3{
    font-size:36px;
}

.promo-card p{
    margin-top:12px;

    color:#777;

    font-size:17px;
}

.promo-card ul{
    display:grid;

    gap:12px;

    margin-top:28px;

    list-style:none;
}

.promo-card li{
    color:#555;

    font-size:16px;
}

.promo-card li::before{
    content:"✓";

    margin-right:9px;

    color:var(--gold-dark);
}

.promo-card .promo-img{
    position:absolute;

    right:-20px;
    bottom:-20px;

    width:52%;
    height:70%;

    background-size:cover;
    background-position:center;

    opacity:.75;

    border-radius:100% 0 0 0;
}

.promo-content{
    position:relative;

    z-index:2;

    max-width:55%;
}

.promo-btn{
    display:inline-flex;

    align-items:center;

    gap:15px;

    margin-top:30px;

    padding:15px 22px;

    border:1px solid #b99a5c;

    border-radius:5px;

    font-size:16px;
    font-weight:800;

    transition:.25s;
}

.promo-btn:hover{
    background:var(--gold);
    color:#111;
}


/* =========================================================
   11. REVIEWS
========================================================= */

.review-area{
    position:relative;
}

.review-viewport{
    overflow:hidden;
}

.review-track{
    display:flex;

    gap:25px;

    transition:transform .5s ease;
}

.review-card{
    flex:
        0 0
        calc(
            (100% - 50px) / 3
        );

    padding:40px;

    background:#fff;

    border:1px solid #e9e6df;

    border-radius:8px;
}

.stars{
    color:#d2a442;

    font-size:19px;

    letter-spacing:3px;
}

.review-card p{
    margin-top:22px;

    color:#444;

    font-size:19px;
    line-height:1.8;
}

.review-card strong{
    display:block;

    margin-top:25px;

    color:#888;

    font-size:15px;
}

.review-dots{
    display:flex;
    justify-content:center;

    gap:8px;

    margin-top:35px;
}

.review-dot{
    width:8px;
    height:8px;

    border-radius:50%;

    background:#ccc;

    transition:.3s;
}

.review-dot.active{
    width:28px;

    border-radius:20px;

    background:var(--gold-dark);
}


/* =========================================================
   12. STORE
========================================================= */

.store-grid{
    display:grid;

    grid-template-columns:
        .75fr
        1.25fr;

    gap:40px;

    align-items:stretch;
}

.store-info{
    padding:45px;

    background:#fff;

    border:1px solid #e5e1d8;
}

.store-info h2{
    font-size:40px;
}

.store-info > p{
    margin-top:12px;

    color:#777;

    font-size:17px;
}

.store-list{
    display:grid;

    gap:20px;

    margin-top:40px;

    list-style:none;
}

.store-list li{
    display:grid;

    grid-template-columns:95px 1fr;

    gap:15px;

    font-size:16px;
    line-height:1.7;
}

.store-list strong{
    color:var(--gold-dark);
}

.store-map{
    position:relative;

    min-height:480px;

    overflow:hidden;

    background:
        url("https://images.unsplash.com/photo-1569336415962-a4bd9f69c07d?auto=format&fit=crop&w=1600&q=80")
        center/cover;
}

.store-map::before{
    content:"";

    position:absolute;

    inset:0;

    /*
    background:
        rgba(
            255,
            255,
            255,
            .32
        );*/
}

.map-card{
    position:absolute;

    left:50%;
    top:50%;

    transform:
        translate(-50%,-50%);

    padding:18px 25px;

    background:#111;

    color:#fff;

    border-radius:7px;

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            .3
        );
}

.map-card::before{
    content:"📍";

    margin-right:8px;

    color:#e44;
}


/* =========================================================
   13. FLOATING
========================================================= */

.floating-contact{
    position:fixed;

    right:25px;
    bottom:30px;

    z-index:800;

    overflow:hidden;

    border-radius:12px;

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            .2
        );
}

.float-btn{
    width:72px;
    height:72px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    color:#fff;

    font-size:11px;
    font-weight:800;

    background:#171717;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    transition:.25s;
}

.float-btn strong{
    font-size:22px;
}

.float-btn.kakao{
    background:#f7d900;
    color:#3a3000;
}

.float-btn:hover{
    filter:brightness(1.15);
}


/* =========================================================
   14. MODAL
========================================================= */

.modal{
    position:fixed;

    inset:0;

    z-index:2000;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    background:
        rgba(
            0,
            0,
            0,
            .8
        );

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.modal.active{
    opacity:1;
    visibility:visible;
}

.modal-box{
    position:relative;

    width:min(
        100%,
        900px
    );

    max-height:90vh;

    overflow:auto;

    background:#fff;

    border-radius:10px;

    transform:translateY(30px);

    transition:.3s;
}

.modal.active .modal-box{
    transform:translateY(0);
}

.modal-close{
    position:absolute;

    top:15px;
    right:15px;

    z-index:3;

    width:48px;
    height:48px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:28px;
}

.modal-product{
    display:grid;

    grid-template-columns:
        1fr
        1fr;
}

.modal-product-image{
    min-height:500px;

    background:#f5f3ef;
}

.modal-product-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.modal-product-info{
    padding:70px 45px;
}

.modal-product-info small{
    color:var(--gold-dark);

    font-weight:800;
}

.modal-product-info h3{
    margin-top:15px;

    font-size:38px;

    letter-spacing:-2px;
}

.modal-product-info .modal-price{
    margin-top:20px;

    color:var(--gold-dark);

    font-size:27px;
    font-weight:900;
}

.modal-product-info p{
    margin-top:30px;

    color:#777;

    font-size:17px;
    line-height:1.8;
}


/* =========================================================
   15. FOOTER
========================================================= */

.footer{
    padding:60px 0;

    background:#090a0b;

    color:#aaa;
}

.footer-top{
    display:flex;

    justify-content:space-between;

    gap:50px;

    padding-bottom:35px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );
}

.footer-info{
    margin-top:25px;

    color:#777;

    font-size:14px;
    line-height:2;
}

.footer-nav{
    display:flex;

    flex-wrap:wrap;

    gap:15px 25px;

    align-content:flex-start;
}

.footer-nav a{
    font-size:14px;
}

.footer-bottom{
    display:flex;

    justify-content:space-between;

    gap:20px;

    padding-top:30px;

    color:#666;

    font-size:13px;
}


/* =========================================================
   16. RESPONSIVE
========================================================= */

@media(max-width:1280px){

    .pc-nav{
        gap:18px;
    }

    .pc-nav a{
        font-size:13px;
    }

    .product-card{
        flex:
            0 0
            calc(
                (100% - 54px) / 4
            );
    }

}

@media(max-width:1024px){

    .section{
        padding:100px 0;
    }

    .pc-nav,
    .header-phone{
        display:none;
    }

    .brand-grid,
    .gold-grid,
    .store-grid{
        grid-template-columns:1fr;
    }

    .brand-image{
        min-height:500px;
    }

    .service-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .product-card{
        flex:
            0 0
            calc(
                (100% - 36px) / 3
            );
    }

}

@media(max-width:768px){

    .container{
        width:
            calc(
                100% - 40px
            );
    }

    .header-inner{
        width:
            calc(
                100% - 40px
            );

        height:75px;
    }

    .logo-mark{
        width:34px;
        height:34px;
    }

    .logo-text strong{
        font-size:17px;
    }

    .hero{
        min-height:680px;
        height:100svh;
    }

    .hero-content{
        width:
            calc(
                100% - 60px
            );
    }

    .hero-copy{
        padding-top:40px;
    }

    .hero-copy small{
        font-size:12px;
    }

    .hero-copy h1{
        font-size:clamp(
            46px,
            13vw,
            70px
        );

        letter-spacing:-3px;
    }

    .hero-copy p{
        font-size:16px;
    }

    .hero-arrow{
        top:auto;
        bottom:110px;

        width:48px;
        height:48px;

        transform:none;

        font-size:28px;
    }

    .hero-prev{
        left:auto;
        right:90px;
    }

    .hero-next{
        right:30px;
    }

    .hero-pagination{
        left:30px;
        bottom:38px;

        transform:none;

        gap:15px;
    }

    .hero-progress-line{
        width:36px;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-title h2{
        font-size:35px;
    }

    .section-title p{
        font-size:16px;
    }

    .brand-copy h2,
    .gold-info h2,
    .gold-price-box h3{
        font-size:36px;
    }

    .brand-stats{
        grid-template-columns:1fr;
    }

    .product-card{
        flex:
            0 0
            calc(
                (100% - 18px) / 2
            );
    }

    .product-image{
        height:190px;
    }

    .promo-grid{
        grid-template-columns:1fr;
    }

    .promo-card{
        min-height:390px;

        padding:35px;
    }

    .promo-content{
        max-width:70%;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .review-card{
        flex:0 0 100%;
    }

    .modal-product{
        grid-template-columns:1fr;
    }

    .modal-product-image{
        min-height:320px;
    }

    .modal-product-info{
        padding:40px 30px;
    }

    .floating-contact{
        right:12px;
        bottom:15px;
    }

    .float-btn{
        width:62px;
        height:62px;
    }

    .footer-top,
    .footer-bottom{
        flex-direction:column;
    }

}

@media(max-width:480px){

    .mobile-menu{
        width:100%;

        padding:
            110px
            30px
            40px;
    }

    .hero-btn{
        min-width:190px;

        font-size:15px;
    }

    .section{
        padding:75px 0;
    }

    .product-card{
        flex:0 0 100%;
    }

    .tabs{
        gap:7px;
    }

    .tab-btn{
        min-width:105px;

        padding:14px 12px;

        font-size:14px;
    }

    .promo-content{
        max-width:90%;
    }

    .store-info{
        padding:30px;
    }

    .store-list li{
        grid-template-columns:1fr;
        gap:5px;
    }

}

/* 일반 상품 */
/* =========================================================
   RESPONSIVE
========================================================= */


/* LAPTOP */

@media (max-width:1200px){

    .general-product-track .product-card{
        flex-basis:
            calc((100% - 54px) / 4);
    }

}


/* TABLET */

@media (max-width:900px){

    .general-products-section{
        padding:85px 0;
    }


    .general-product-track{
        gap:16px;
    }


    .general-product-track .product-card{
        flex-basis:
            calc((100% - 32px) / 3);
    }


    .product-tabs .tab-btn{
        min-width:115px;

        height:54px;

        font-size:15px;
    }

}


/* MOBILE */

@media (max-width:640px){

    .general-products-section{
        padding:70px 0;
    }


    .section-head{
        align-items:flex-end;
    }


    .slider-controls{
        gap:7px;
    }


    .round-arrow{
        width:48px;
        height:48px;

        font-size:29px;
    }


    .product-tabs{
        margin:
            30px 0 20px;

        gap:7px;
    }


    .product-tabs .tab-btn{
        min-width:auto;

        padding:0 19px;

        height:50px;

        font-size:14px;
    }


    .general-product-track{
        gap:12px;
    }


    .general-product-track .product-card{
        flex-basis:
            calc((100% - 12px) / 2);
    }


    .general-product-track .product-name{
        padding:
            16px 14px 6px;

        font-size:14px;
    }


    .general-product-track .product-price{
        padding:
            0 14px 18px;

        font-size:16px;
    }


    .product-pagination{
        margin-top:28px;
    }

}


/* SMALL MOBILE */

@media (max-width:400px){

    .general-product-track .product-card{
        flex-basis:100%;
    }

}

/* 일반상품 CSS */
/* =========================================================
   GENERAL PRODUCTS SECTION
========================================================= */

/* =========================================================
   GENERAL PRODUCTS
========================================================= */

.general-products-section{
    padding:120px 20px;
    background:#f0eee9;
}


.general-products-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.general-products-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
}


.general-products-title span{
    display:block;
    margin-bottom:14px;

    color:#b28a43;

    font-size:15px;
    font-weight:800;

    letter-spacing:2px;
}


.general-products-title h2{
    margin:0;

    color:#222;

    font-size:48px;
    font-weight:800;

    line-height:1.2;
}


.general-products-title p{
    margin:18px 0 0;

    color:#777;

    font-size:19px;
    line-height:1.7;
}


/* =========================================================
   ARROW
========================================================= */

.general-slider-controls{
    display:flex;
    gap:10px;
}


.general-arrow{
    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #d7d0c5;
    border-radius:50%;

    background:#fff;

    color:#222;

    cursor:pointer;

    transition:.25s ease;
}


.general-arrow span{
    display:block;

    font-size:38px;
    line-height:1;

    margin-top:-4px;
}


.general-arrow:hover:not(:disabled){
    background:#b28a43;
    border-color:#b28a43;

    color:#fff;

    transform:translateY(-3px);
}


.general-arrow:disabled{
    opacity:.35;

    cursor:not-allowed;
}


/* =========================================================
   TABS
========================================================= */

.general-product-tabs{
    display:flex;
    gap:10px;

    margin:55px 0 35px;

    overflow-x:auto;

    scrollbar-width:none;
}


.general-product-tabs::-webkit-scrollbar{
    display:none;
}


.general-tab-btn{
    flex:0 0 auto;

    min-width:125px;
    height:58px;

    padding:0 25px;

    border:1px solid #d9d3ca;
    border-radius:6px;

    background:#f8f6f2;

    color:#555;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:.25s ease;
}


.general-tab-btn:hover{
    border-color:#b28a43;

    color:#9b732e;

    transform:translateY(-2px);
}


.general-tab-btn.active{
    background:#b28a43;
    border-color:#b28a43;

    color:#fff;

    box-shadow:
        0 10px 25px
        rgba(178,138,67,.2);
}


/* =========================================================
   PRODUCT VIEWPORT
========================================================= */

.general-product-viewport{
    width:100%;
    min-height:410px;

    overflow:hidden;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.general-product-grid{
    display:grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:22px;

    width:100%;

    animation:
        generalProductFade .35s ease;
}


@keyframes generalProductFade{

    from{
        opacity:0;
        transform:translateY(12px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.general-product-card{
    position:relative;

    min-width:0;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);
    border-radius:12px;

    background:#fff;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.05);

    cursor:pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.general-product-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 22px 45px
        rgba(0,0,0,.12);
}


/* IMAGE */

.general-product-image{
    width:100%;
    aspect-ratio:1 / 1;

    overflow:hidden;

    background:#f7f4ef;
}


.general-product-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .5s ease;
}


.general-product-card:hover
.general-product-image img{
    transform:scale(1.07);
}


/* PRODUCT INFO */

.general-product-info{
    padding:24px 22px 25px;
}


.general-product-info h3{
    margin:0 0 9px;

    color:#222;

    font-size:20px;
    font-weight:800;

    line-height:1.4;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}


.general-product-info strong{
    color:#b28a43;

    font-size:21px;
    font-weight:800;
}


/* =========================================================
   PAGINATION
========================================================= */

.general-product-pagination{
    display:flex;

    justify-content:center;
    align-items:center;

    gap:10px;

    margin-top:45px;

    min-height:14px;
}


.general-page-btn{
    width:12px;
    height:12px;

    padding:0;

    border:0;
    border-radius:50%;

    background:#c7c0b6;

    cursor:pointer;

    transition:.3s ease;
}


.general-page-btn:hover{
    background:#b28a43;
}


.general-page-btn.active{
    width:40px;

    border-radius:20px;

    background:#b28a43;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.jewelry-modal{
    position:fixed;

    inset:0;

    z-index:999999;

    display:none;

    align-items:center;
    justify-content:center;

    padding:25px;
}


.jewelry-modal.active{
    display:flex;
}


.jewelry-modal-overlay{
    position:absolute;

    inset:0;

    background:
        rgba(0,0,0,.72);

    backdrop-filter:
        blur(6px);
}


/* MODAL BOX */

.jewelry-modal-box{
    position:relative;

    z-index:2;

    width:100%;
    max-width:1100px;

    max-height:90vh;

    overflow-y:auto;

    border-radius:18px;

    background:#fff;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.4);

    animation:
        modalOpen .35s ease;
}


@keyframes modalOpen{

    from{
        opacity:0;

        transform:
            translateY(25px)
            scale(.97);
    }

    to{
        opacity:1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* CLOSE */

.jewelry-modal-close{
    position:absolute;

    top:18px;
    right:18px;

    z-index:10;

    width:50px;
    height:50px;

    border:0;
    border-radius:50%;

    background:#222;

    color:#fff;

    font-size:32px;

    cursor:pointer;

    transition:.25s ease;
}


.jewelry-modal-close:hover{
    background:#b28a43;

    transform:rotate(90deg);
}


/* CONTENT */

.jewelry-modal-content{
    display:grid;

    grid-template-columns:
        1fr 1fr;

    min-height:600px;
}


/* MODAL IMAGE */

.jewelry-modal-image{
    min-height:600px;

    background:#f3f0eb;
}


.jewelry-modal-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}


/* MODAL INFO */

.jewelry-modal-info{
    display:flex;

    flex-direction:column;
    justify-content:center;

    padding:70px;
}


.jewelry-modal-info > span{
    margin-bottom:18px;

    color:#b28a43;

    font-size:13px;
    font-weight:800;

    letter-spacing:2px;
}


.jewelry-modal-info h2{
    margin:0;

    color:#222;

    font-size:40px;
    font-weight:800;

    line-height:1.35;
}


.jewelry-modal-price{
    display:block;

    margin-top:18px;

    color:#b28a43;

    font-size:30px;
}


/* DESCRIPTION */

.jewelry-modal-description{
    margin:30px 0;

    color:#777;

    font-size:18px;
    line-height:1.9;
}


/* DETAIL */

.jewelry-modal-detail{
    border-top:
        1px solid #e5e0d8;
}


.jewelry-modal-detail > div{
    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:17px 0;

    border-bottom:
        1px solid #e5e0d8;
}


.jewelry-modal-detail span{
    color:#999;

    font-size:14px;
    font-weight:700;
}


.jewelry-modal-detail strong{
    color:#333;

    font-size:16px;
}


/* MODAL BUTTON */

.jewelry-modal-buttons{
    display:flex;

    gap:10px;

    margin-top:35px;
}


.jewelry-modal-buttons a,
.jewelry-modal-buttons button{
    flex:1;

    height:60px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:0;
    border-radius:6px;

    font-size:17px;
    font-weight:800;

    text-decoration:none;

    cursor:pointer;

    transition:.25s ease;
}


.jewelry-modal-call{
    background:#222;

    color:#fff;
}


.jewelry-modal-kakao{
    background:#fee500;

    color:#191919;
}


.jewelry-modal-buttons a:hover,
.jewelry-modal-buttons button:hover{
    transform:translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.15);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .general-product-grid{
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .general-products-section{
        padding:80px 16px;
    }


    .general-products-head{
        gap:20px;
    }


    .general-products-title h2{
        font-size:36px;
    }


    .general-products-title p{
        font-size:16px;
    }


    .general-arrow{
        width:52px;
        height:52px;
    }


    .general-product-tabs{
        margin:40px 0 25px;
    }


    .general-tab-btn{
        height:52px;

        min-width:auto;

        padding:0 20px;

        font-size:15px;
    }


    .general-product-grid{
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:12px;
    }


    .general-product-info{
        padding:17px 14px 19px;
    }


    .general-product-info h3{
        font-size:16px;
    }


    .general-product-info strong{
        font-size:17px;
    }


    /* MODAL */

    .jewelry-modal{
        align-items:flex-end;

        padding:0;
    }


    .jewelry-modal-box{
        max-height:92vh;

        border-radius:
            20px 20px 0 0;
    }


    .jewelry-modal-content{
        grid-template-columns:1fr;
    }


    .jewelry-modal-image{
        min-height:340px;
    }


    .jewelry-modal-info{
        padding:40px 25px;
    }


    .jewelry-modal-info h2{
        font-size:30px;
    }


    .jewelry-modal-price{
        font-size:25px;
    }


    .jewelry-modal-description{
        font-size:16px;
    }

}


@media(max-width:480px){

    .general-products-head{
        flex-direction:column;

        align-items:flex-start;
    }


    .general-slider-controls{
        width:100%;

        justify-content:flex-end;
    }


    .general-products-title h2{
        font-size:32px;
    }


    .jewelry-modal-buttons{
        flex-direction:column;
    }

}


/* BODY MODAL OPEN */

body.modal-open{
    overflow:hidden;
}

/* FLOATING 내릴때보이게 CSS */
/* =========================================
   FLOATING CONTACT
========================================= */

.floating-contact{
    position:fixed;

    right:30px;
    bottom:30px;

    z-index:9999;

    display:flex;
    flex-direction:column;

    gap:10px;

    opacity:0;

    visibility:hidden;

    transform:
        translateY(20px);

    pointer-events:none;

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;
}


/* 히어로 아래로 내려갔을 때 */

.floating-contact.show{
    opacity:1;

    visibility:visible;

    transform:
        translateY(0);

    pointer-events:auto;
}


.float-btn{
    width:74px;
    min-height:74px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:5px;

    border:0;
    border-radius:18px;

    background:#fff;

    color:#222;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    cursor:pointer;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.14);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.float-btn strong{
    font-size:23px;
    line-height:1;
}


/* 전화 */

.float-btn:hover{
    background:#b28a43;
    color:#fff;

    transform:
        translateY(-5px);
}


/* 카카오톡 */

.float-btn.kakao{
    background:#fee500;
    color:#191919;
}


.float-btn.kakao:hover{
    background:#f3d900;
}


/* TOP */

#topBtn{
    background:#222;
    color:#fff;
}


#topBtn:hover{
    background:#b28a43;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .floating-contact{
        right:15px;
        bottom:20px;

        gap:7px;
    }


    .float-btn{
        width:62px;
        min-height:62px;

        border-radius:15px;

        font-size:11px;
    }


    .float-btn strong{
        font-size:19px;
    }

}
