@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Main Palette */
    --base-bg: #F7F6F4;
    /* Soft Pearl / Ivory White */
    --base-card: #FAFAFA;
    /* Slightly lighter for cards */
    --text-main: #333333;
    /* Dark Grey for readability */
    --text-muted: #666666;

    /* Luxury Point (Titles, Accents) */
    --accent-gold: #C9A27E;
    /* Rose Gold */
    --accent-gold-light: #D8B89A;
    /* Champagne Gold */

    /* Vibrant Point (CTAs, Interaction) */
    --point-lime: #BFD84A;
    /* Soft Chartreuse */
    --point-lime-hover: #C9E15A;
    /* Fresh Lime */

    --border-color: #E0E0E0;
    --font-main: 'Noto Sans KR', sans-serif;
    --container-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--base-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 246, 244, 0.9);
    /* Base BG with opacity */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 126, 0.2);
    /* Subtle Gold border */
}

.top-bar {
    background: var(--accent-gold);
    color: #fff;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 0;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--point-lime);
    /* Vibrant underline */
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 25px;
    font-size: 1.3rem;
    color: var(--text-main);
}

.nav-icons a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #fff;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content.dark-text {
    color: var(--text-main);
    text-shadow: none;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--accent-gold);
    /* Luxury Point Title */
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--point-lime);
    color: #fff;
    /* White text on lime usually needs checking, assuming generic lime implies readable with white or dark. Let's try dark for Lime */
    color: #3f4a18;
    /* Darker green text for contrast on lime button */
    font-weight: 700;
    border-radius: 50px;
    /* Softer shape */
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(191, 216, 74, 0.3);
    /* Lime glow */
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--point-lime-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(191, 216, 74, 0.5);
}

/* Quick Menu */
.quick-menu {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.quick-menu-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.quick-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.quick-item:hover {
    transform: translateY(-5px);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: var(--base-card);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 15px;
    color: var(--accent-gold);
    border: 1px solid rgba(201, 162, 126, 0.1);
    transition: all 0.3s;
}

.quick-item:hover .quick-icon {
    border-color: var(--point-lime);
    color: var(--point-lime);
    background: #fff;
}

.quick-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Featured Model/Banner Section */
.banner-section {
    position: relative;
    height: 600px;
    margin: 100px 0;
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 100%;
}

.banner-text h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--accent-gold);
}

/* Best Sellers / Products */
.products {
    background: var(--base-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    background: var(--base-card);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--point-lime);
    color: #3f4a18;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.product-info {
    padding: 0 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.product-info .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.product-info .price .original {
    color: #ccc;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Footer */
footer {
    background: #fff;
    padding: 100px 0 50px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-column h4 {
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cs-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 10px 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a:hover {
    color: var(--point-lime);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .quick-menu-list {
        gap: 20px;
    }

    .quick-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Logo Animation: Rotate Y every 10 seconds */
@keyframes logo-spin-10s {
    0% {
        transform: rotateY(0deg);
    }

    15% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.logo-animate-10s {
    animation: logo-spin-10s 10s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Levmer Shine Effect */
@keyframes shimmer-flow {
    0% {
        transform: translateX(-150%) skewX(-25deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    40% {
        transform: translateX(250%) skewX(-25deg);
        opacity: 0;
    }

    100% {
        transform: translateX(250%) skewX(-25deg);
        opacity: 0;
    }
}

.levmer-shimmer {
    position: relative;
    overflow: hidden;
}

.levmer-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    animation: shimmer-flow 4s infinite;
    pointer-events: none;
    z-index: 20;
}

/* Utility: Hide Scrollbar but allow scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Utility: Mask Image for horizontal scroll hint */
.mask-image-right {
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}