/* Shop Luxury — Refined Collection Page */

/* Hero */
.shop-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a url('images/shop/samples/1/1_post_87.jpg') center/cover no-repeat;
    overflow: hidden;
}
.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.shop-hero-content .lux-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.shop-hero-content h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
}

/* Notice */
.shop-notice-section {
    background: #fff;
    padding: 80px 24px;
    text-align: center;
}
.shop-notice-section .lux-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}
.shop-notice-section p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}
.shop-notice-section p a {
    color: #222;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Filter */
.shop-filter-section {
    background: #F7F5F0;
    padding: 40px 24px;
    text-align: center;
}
.shop-filter-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.shop-filter-nav a {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}
.shop-filter-nav a:hover,
.shop-filter-nav a.active {
    color: #222;
    border-bottom-color: #222;
}

/* Product Grid */
.shop-products-section {
    background: #fff;
    padding: 80px 24px;
}
.shop-products-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
}
.product-card {
    display: flex;
    flex-direction: column;
}
.product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-image img {
    transform: scale(1.03);
}
.product-card .product-info {
    padding: 16px 4px 0;
}
.product-card .product-info h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 6px;
    line-height: 1.5;
}
.product-card .product-meta {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.75rem;
    color: #999;
    font-weight: 300;
}
.product-card .product-meta .product-divider {
    margin: 0 6px;
    color: #ccc;
}
.product-card .product-code {
    display: none;
}

/* Bespoke */
.shop-bespoke-section {
    background: #F7F5F0;
    padding: 100px 24px;
}
.shop-bespoke-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.shop-bespoke-section .lux-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}
.shop-bespoke-section h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}
.shop-bespoke-section p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}
.bespoke-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
}
.bespoke-features li {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #444;
}
.bespoke-features li::before {
    content: '\2014';
    margin-right: 8px;
    color: #999;
}
.btn-bespoke {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #222;
    border: 1px solid #222;
    padding: 14px 40px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.btn-bespoke:hover {
    background: #222;
    color: #fff;
}

/* Dark CTA */
.shop-cta-section {
    background: #1a1a1a;
    padding: 80px 24px;
    text-align: center;
}
.shop-cta-section .lux-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}
.shop-cta-section h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}
.shop-cta-section .cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.shop-cta-section .cta-phone:hover {
    color: #fff;
}

/* Modal (keep functional) */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.product-modal.active {
    display: flex;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
.modal-container {
    position: relative;
    background: #fff;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #222;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close::before {
    content: '\00d7';
}
.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.gallery-main img {
    width: 100%;
    height: auto;
}
.modal-info h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 16px;
}
.modal-description p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.modal-details {
    margin: 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.82rem;
    color: #444;
    line-height: 2;
}
.modal-contact p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 12px;
}
.modal-contact a {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.8rem;
    padding: 10px 24px;
    margin-right: 8px;
    text-decoration: none;
    border: 1px solid #222;
    color: #222;
    transition: background 0.3s, color 0.3s;
}
.modal-contact a:hover {
    background: #222;
    color: #fff;
}

/* Top Button */
#topBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.3s;
}
#topBtn .arrow-up {
    display: block;
    width: 10px;
    height: 10px;
    border-left: 1.5px solid #fff;
    border-top: 1.5px solid #fff;
    transform: rotate(45deg);
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .shop-filter-nav {
        gap: 16px;
    }
    .modal-content {
        grid-template-columns: 1fr;
    }
    .bespoke-features {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .products-grid {
        gap: 20px 12px;
    }
    .product-card .product-info h3 {
        font-size: 0.8rem;
    }
}
