* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: white;
    font-family: 'Hanken Grotesk', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 5px;
}

nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

nav a .material-symbols-outlined {
    font-size: 20px;
    opacity: 0.7;
}

nav a:hover { color: white; }
nav a:hover .material-symbols-outlined { opacity: 1; }

/* hero */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.season {
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0.5;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 140px;
    font-weight: 300;
    letter-spacing: 12px;
    line-height: 1;
}

.hero p {
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* shop */
.shop { padding: 60px; }

.shop h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    transition: border-color 0.3s;
}

.product-card:hover { border-color: rgba(255,255,255,0.3); }
.product-card a { text-decoration: none; color: white; }

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-card p {
    font-size: 13px;
    opacity: 0.5;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* product detail */
.product-detail {
    padding: 80px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.product-detail img { display: block; margin: 0 auto 30px; }

.product-detail h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.product-detail .price {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.product-detail .description {
    font-size: 14px;
    opacity: 0.5;
    line-height: 1.8;
    margin-bottom: 40px;
}

.product-detail a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-detail button {
    background: white;
    color: #111;
    border: none;
    padding: 14px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    transition: opacity 0.2s;
    display: block;
}

.product-detail button:hover { opacity: 0.8; }

/* auth */
.auth {
    max-width: 440px;
    margin: 0 auto;
    min-height: calc(100vh - 89px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 200px;
}

.auth h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.auth input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 0;
    font-size: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 24px;
    outline: none;
    transition: border-color 0.2s;
}

.auth input:focus { border-bottom-color: white; }

.auth input::placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth button {
    background: white;
    color: #111;
    border: none;
    padding: 14px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
    transition: opacity 0.2s;
}

.auth button:hover { opacity: 0.8; }
.auth p { font-size: 12px; opacity: 0.4; letter-spacing: 1px; }
.auth a { color: white; opacity: 0.6; }

/* cart */
.cart { padding: 60px; }

.cart h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.cart-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    letter-spacing: 1px;
}

.cart-item > span:nth-child(1) {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

.cart-item > span:nth-child(2) { opacity: 0.6; }

.cart button {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cart-order-btn {
    background: white;
    color: #111;
    border: none;
    padding: 14px 50px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 40px;
    transition: opacity 0.2s;
}

.cart-order-btn:hover { opacity: 0.8; }
.cart button:hover { opacity: 0.8; }

/* order list */
.order-list { padding: 60px; }

.order-list h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.order-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.order-item p {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* admin */
.admin { padding: 60px; }

.admin h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.admin > a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    margin-bottom: 40px;
    transition: border-color 0.2s;
}

.admin > a:hover { border-color: white; }

.admin-product {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    letter-spacing: 1px;
}

.admin-product span:first-child {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

.admin-product a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.admin-product a:hover { color: white; }
/* info pages */
.info-section {
    padding: 80px 60px;
    max-width: 860px;
    margin: 0 auto;
}

.info-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.info-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 16px;
}

.info-date {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.3;
    margin-bottom: 10px;
}

.info-body {
    font-size: 14px;
    line-height: 2;
    opacity: 0.6;
    letter-spacing: 1px;
}
/* size guide */
.size-guide {
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.size-guide h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.size-table { margin-bottom: 60px; }

.size-table h3 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    letter-spacing: 1px;
}

table th {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0.8;
}

table tr:hover td { opacity: 1; }

.size-guide > a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

/* footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 60px 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    white-space: nowrap;
}

.footer-desc {
    font-size: 11px;
    opacity: 0.3;
    letter-spacing: 1px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover { color: white; }
.footer-social .material-symbols-outlined { font-size: 20px; }

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.footer-col a:hover { color: white; }

/* footer bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 50px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-company-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 20px;
}

.footer-company-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 1px;
}

.footer-policy-desc {
    font-size: 11px;
    opacity: 0.3;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    transition: border-color 0.2s;
}

.footer-policy-links a:hover { border-color: rgba(255,255,255,0.4); }

.footer-cs-number {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-cs-hours {
    font-size: 11px;
    opacity: 0.3;
    letter-spacing: 1px;
    line-height: 2;
}

.footer-copy-bar {
    padding: 20px 60px;
    font-size: 11px;
    opacity: 0.3;
    letter-spacing: 1px;
}

/* 모바일 반응형 footer */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 24px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }
    .footer-copy-bar { padding: 20px 24px; }
}