/* CSS 理쒖쟻??諛??깅뒫 ?μ긽 */
/* CSS 蹂???뺤쓽 */
:root {
    --primary-color: #8b6f47;
    --secondary-color: #c8a27e;
    --accent-color: #6b7c3d;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --light-background: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
}

/* 湲곕낯 由ъ뀑 諛?理쒖쟻??*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Noto Sans KR', 'Nanum Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* ?깅뒫 理쒖쟻?붾? ?꾪븳 will-change ?띿꽦 */
.hero, .service-card, .comparison-card, .testimonial-card {
    will-change: transform;
}

/* ?ㅻ뜑 ?ㅽ???*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
}

/* ?ㅻ퉬寃뚯씠??硫붾돱 */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* ?꾨쾭嫄?硫붾돱 */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ?덉뼱濡??뱀뀡 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #e8ebf0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chrysanthemum-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    pointer-events: none;
}

.chrysanthemum-svg {
    width: 600px;
    height: 600px;
}

.chrysanthemum-svg * {
    animation: none !important;
}

.chrysanthemum-hero-svg * {
    animation: inherit;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #8b6f47;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #8b6f47;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.25);
}

.btn-primary:hover {
    background: #7a5f3d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #8b6f47;
    border: 1.5px solid #8b6f47;
}

.btn-secondary:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.15);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chrysanthemum-hero {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
}

.chrysanthemum-hero-svg {
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

/* 국화 애니메이션 */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes petalFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
        opacity: 0.85;
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
        opacity: 0.9;
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.chrysanthemum-hero-svg {
    animation: float 6s ease-in-out infinite;
}

.chrysanthemum-hero-svg .petal {
    transform-origin: 200px 200px;
    animation: petalFloat 4s ease-in-out infinite;
}

.chrysanthemum-hero-svg .petal-1 {
    animation-delay: 0s;
}

.chrysanthemum-hero-svg .petal-2 {
    animation-delay: 0.4s;
}

.chrysanthemum-hero-svg .petal-3 {
    animation-delay: 0.8s;
}

.chrysanthemum-hero-svg .petal-4 {
    animation-delay: 1.2s;
}

.chrysanthemum-hero-svg .petal-5 {
    animation-delay: 1.6s;
}

.chrysanthemum-hero-svg .petal-6 {
    animation-delay: 2s;
}

.chrysanthemum-hero-svg .petal-7 {
    animation-delay: 2.4s;
}

.chrysanthemum-hero-svg .petal-8 {
    animation-delay: 2.8s;
}

.chrysanthemum-hero-svg .petal-9 {
    animation-delay: 3.2s;
}

.chrysanthemum-hero-svg .flower-center {
    transform-origin: 200px 200px;
    animation: centerPulse 3s ease-in-out infinite;
}

.chrysanthemum-hero-svg .leaf {
    transform-origin: 200px 280px;
    animation: petalFloat 5s ease-in-out infinite;
}

.chrysanthemum-hero-svg .leaf-1 {
    animation-delay: 0.5s;
}

.chrysanthemum-hero-svg .leaf-2 {
    animation-delay: 1s;
}

.chrysanthemum-hero-svg .leaf-3 {
    animation-delay: 1.5s;
}

/* 히어로 섹션 하이라이트 스타일 */
.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem 0;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.15) 0%, rgba(200, 162, 126, 0.2) 50%, rgba(107, 124, 61, 0.15) 100%);
    color: var(--primary-color) !important;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.15), 
                0 2px 8px rgba(107, 124, 61, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.6;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    border: 1px solid rgba(139, 111, 71, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentlePulse 3s ease-in-out infinite;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-highlight:hover::before {
    left: 100%;
}

.hero-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2), 
                0 4px 12px rgba(107, 124, 61, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 111, 71, 0.3);
}

.hero-highlight i {
    color: #c8a27e;
    font-size: 1rem;
    animation: heartbeat 2s ease-in-out infinite;
}

.hero-highlight span {
    position: relative;
    z-index: 1;
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(139, 111, 71, 0.15), 
                    0 2px 8px rgba(107, 124, 61, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(139, 111, 71, 0.2), 
                    0 3px 10px rgba(107, 124, 61, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ?뱀뀡 怨듯넻 ?ㅽ???*/
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 전체적인 정렬과 간격 개선 */
section {
    scroll-margin-top: 100px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

/* ?뚭컻 ?뱀뀡 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ?쒕퉬???뱀뀡 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* 媛寃?鍮꾧탳 ?뱀뀡 */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.comparison-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.comparison-card.featured::before {
    content: '異붿쿇';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.comparison-card .subtitle {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.comparison-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comparison-card .features {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-card .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

.comparison-card .features li:last-child {
    border-bottom: none;
}

/* ?곹뭹 ?뱀뀡 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.product-content {
    padding: 2rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: center;
}

.product-subtitle {
    color: var(--light-text);
    margin-bottom: 1rem;
    text-align: center;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #bfa980;
    text-align: center;
        width: 100%;
        display: block;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-actions {
    text-align: center;
}

/* ?곸젙?ъ쭊 ?뱀뀡 */
.portrait-section {
    background: var(--light-background);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin: 3rem 0;
}

.portrait-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.portrait-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.portrait-text p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portrait-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.portrait-button:hover {
    background: #7a5f3d;
    transform: translateY(-2px);
}

/* 寃쎈젰 ?뱀뀡 */
.experience-content {
    text-align: center;
}

.slideshow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slide {
    display: none;
    animation: fade 1.5s;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.slide-caption {
    margin-top: 1rem;
    color: var(--light-text);
}

.slideshow-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* ?꾧린 ?뱀뀡 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* 臾몄쓽 ?뱀뀡 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

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

.kakao-link {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-kakao {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.8rem;
    background: #FEE500;
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(254, 229, 0, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-kakao:hover {
    background: #FDD835;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(254, 229, 0, 0.4);
}

.btn-kakao i {
    font-size: 1.2rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(225, 48, 108, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(225, 48, 108, 0.4);
    opacity: 0.9;
}

.btn-instagram i {
    font-size: 1.2rem;
}

.kakao-note {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: normal;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ?명꽣 */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ?좊땲硫붿씠??*/
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 諛섏쓳???붿옄??*/
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .chrysanthemum-hero {
        max-width: 300px;
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .portrait-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comparison-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ?묎렐??媛쒖꽑 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 怨좊?鍮?紐⑤뱶 吏??*/
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --text-color: #000;
        --light-text: #333;
        --border-color: #000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* ?ъ빱???쒖떆 媛쒖꽑 */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ?ㅽ겕由?由щ뜑 ?꾩슜 ?띿뒪??*/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ?깅뒫 理쒖쟻?붾? ?꾪븳 CSS */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .chrysanthemum-illustration {
        display: none;
    }
}

/* ?몄뇙 ?ㅽ???*/
@media print {
    .header,
    .footer,
    .btn,
    .hamburger {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
} 

/* ?곹뭹 ?곸꽭 ?섏씠吏 ?ㅽ???*/
.product-detail-section {
    padding: 8rem 0 5rem;
    background: var(--light-background);
}

.product-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-title-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category h3 i {
    color: var(--secondary-color);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.product-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 30%;
}

.product-table td:last-child {
    color: var(--light-text);
}

.usage-method {
    margin-bottom: 2.5rem;
}

.steps-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.step-visual {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.step-visual:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.step-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--light-text);
    line-height: 1.5;
}

.product-notice {
    background: #fffef0;
    border: none;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-notice h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #ffc107;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    flex-shrink: 0;
}

.notice-icon::after {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.product-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-notice li {
    padding: 0.8rem 0;
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-notice li:last-child {
    padding-bottom: 0;
}

.notice-icon-small {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #ffc107;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notice-icon-small::after {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
}

.product-notice li::before {
    content: '';
    display: none;
}

.product-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ?곸젙?ъ쭊 ?좎껌 ?섏씠吏 ?ㅽ???*/
.portrait-application-section {
    padding: 8rem 0 5rem;
    background: var(--light-background);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.page-title-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.page-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.page-highlight i {
    font-size: 1.3rem;
}

.application-process {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.application-process h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--light-text);
}

.application-form-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.application-form-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.upload-area {
    margin-top: 1rem;
}

.upload-box {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background: var(--light-background);
}

.upload-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-box p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.upload-box span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.option-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-choice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.option-choice:hover {
    border-color: var(--primary-color);
    background: var(--light-background);
}

.option-choice input[type="radio"] {
    margin: 0;
}

.option-choice label {
    cursor: pointer;
    flex: 1;
}

.option-title {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.option-desc {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
}

.production-features {
    background: var(--light-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.production-features h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.form-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ?곹뭹 ?뱀뀡 ?ㅽ???媛쒖꽑 */
.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-info {
    margin-bottom: 1.5rem;
}

.product-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-action {
    text-align: center;
}

.btn-product {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-product:hover {
    background: #7a5f3d;
    transform: translateY(-2px);
}

.portrait-selection {
    background: var(--light-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
}

.portrait-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.portrait-info-section {
    text-align: left;
}

.portrait-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portrait-subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.portrait-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.benefit-item i {
    color: var(--primary-color);
}

.portrait-highlight-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-price {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-desc {
    color: var(--light-text);
    font-weight: 600;
}

.portrait-action-section {
    text-align: center;
}

.btn-portrait-apply {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-portrait-apply:hover {
    background: #7a5f3d;
    transform: translateY(-2px);
}

/* 媛寃??щ챸???뱀뀡 ?ㅽ???*/
.transparency {
    background: var(--light-background);
}

.transparency h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.comparison-card.major {
    border-color: #e74c3c;
}

.comparison-card.ours {
    border-color: var(--primary-color);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item span:first-child {
    color: var(--light-text);
}

.cost {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.warning {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* 諛섏쓳???붿옄??媛쒖꽑 */
@media (max-width: 768px) {
    .product-actions,
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .portrait-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-visual {
        grid-template-columns: 1fr;
    }
    
    .option-choices {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-title-section h1,
    .page-title-section h1 {
        font-size: 2rem;
    }
    
    .product-price .price,
    .page-highlight {
        font-size: 1.5rem;
    }
    
    .step-visual,
    .process-step {
        padding: 1rem;
    }
    
    .upload-box {
        padding: 2rem 1rem;
    }
    
    .upload-box i {
        font-size: 2rem;
    }
} 

/* 硫붿떆吏 ?쒖떆 ?ㅽ???*/
.success-message,
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.success-message.show,
.error-message.show {
    transform: translateX(0);
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    min-width: 300px;
}

.success-message .message-content {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message .message-content {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-content i {
    font-size: 1.2rem;
}

/* ?곹뭹 ???ㅽ???*/
.product-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.product-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--light-text);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.product-tab:hover {
    color: var(--primary-color);
}

.product-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

/* ?곹뭹 媛ㅻ윭由??ㅽ???*/
.product-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-main-image {
    text-align: center;
}

.product-main-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-thumbnail {
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-color);
}

.product-thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* ?섎웾 ?좏깮湲??ㅽ???*/
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--light-background);
    border-color: var(--primary-color);
}

.quantity-input {
    width: 80px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    font-size: 1rem;
}

/* 由щ럭 ?쒖뒪???ㅽ???*/
.review-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.review-form {
    background: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.rating-inputs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-inputs input[type="radio"] {
    display: none;
}

.rating-inputs label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: var(--transition);
}

.rating-inputs input[type="radio"]:checked ~ label,
.rating-inputs label:hover,
.rating-inputs label:hover ~ label {
    color: #ffd700;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.review-content {
    color: var(--text-color);
    line-height: 1.6;
}

/* ?곹뭹 鍮꾧탳 ?ㅽ???*/
.compare-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    max-width: 300px;
    z-index: 1000;
}

.compare-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--light-background);
    border-radius: var(--border-radius);
}

.remove-compare {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-compare:hover {
    background: #c0392b;
}

/* ?듭뀡 ?좏깮 ?ㅽ???*/
.option-choice.selected {
    border-color: var(--primary-color);
    background: var(--light-background);
}

/* ?뚯씪 ?낅줈???쒕옒洹????쒕∼ ?ㅽ???*/
.upload-box.dragover {
    border-color: var(--primary-color);
    background: var(--light-background);
}

/* 濡쒕뵫 ?ㅽ뵾??*/
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* 온유누리를 선택한 이유 섹션 */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #8b6f47;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    letter-spacing: -0.3px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.about-text-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 4px 4px 0 rgba(139, 111, 71, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(139, 111, 71, 0.2);
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    width: 100%;
}

.about-intro,
.about-detail,
.about-conclusion {
    font-size: 1rem;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 1.8rem;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-detail {
    color: #4a4a4a;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(139, 111, 71, 0.3);
    margin-left: 0.5rem;
    margin-bottom: 2rem;
}

.about-conclusion {
    margin-bottom: 0;
}

.about-intro strong,
.about-conclusion strong {
    color: #a0522d;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline;
    letter-spacing: -0.2px;
}

/* 다른 상조와 비교 섹션 */
.comparison-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.comparison-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #8b6f47;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    font-weight: 400;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: white;
    border: 1px solid #e9ecef;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #8b6f47 0%, #c8a27e 100%);
    color: white;
}

.comparison-table th {
    padding: 1.2rem 0.6rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    vertical-align: middle;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}

.comparison-table th:first-child {
    text-align: center;
    padding: 1.2rem 0.5rem;
    display: block;
    background: rgba(255, 255, 255, 0.25);
    border-right: none;
}

.comparison-table th:first-child i {
    font-size: 1rem;
    opacity: 1;
    color: #ffffff;
    margin-right: 0.4rem;
}

.comparison-table th:first-child span {
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th.onyou-column {
    background: transparent;
    font-weight: 700;
    font-size: 1rem;
    width: auto;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
    width: calc((100% - 180px) / 3);
}

.comparison-table td.onyou-column,
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    width: calc((100% - 180px) / 3);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.2rem 0.6rem;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
    font-style: normal;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}

.comparison-table td:first-child {
    text-align: center;
    padding: 1.2rem 0.5rem;
    font-weight: 600;
    background: #ffffff;
    color: #8b6f47;
    display: block;
    font-size: 1rem;
    border-right: none;
}

.comparison-table td:first-child i {
    font-size: 1rem;
    color: #d4af37;
    opacity: 1;
    margin-right: 0.4rem;
}

.comparison-table td:first-child strong {
    font-weight: 600;
    font-size: 1rem;
    display: inline;
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table td strong {
    color: #8b6f47;
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table td.onyou-column {
    background: transparent;
    font-weight: 600;
    color: #333333;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.comparison-table td.onyou-column::before {
    content: '';
    display: none;
}

.comparison-table td.onyou-column strong {
    color: #333333;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table tbody tr:hover td.onyou-column {
    background: transparent;
    box-shadow: none;
}

.comparison-table td em {
    font-style: normal;
    color: var(--light-text);
    font-weight: 400;
}

.comparison-table .table-subtext {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    display: block;
    margin-top: 0.4rem;
    font-style: normal;
}

.comparison-table tbody tr:nth-child(odd) td:first-child {
    background: #ffffff;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
    background: #ffffff;
}

.comparison-note {
    text-align: center;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

/* 왜 상조 비용이 비쌀까요 섹션 */
.why-expensive-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.why-expensive-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    letter-spacing: -0.3px;
}

.reason-item {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.reason-item:last-child {
    margin-bottom: 0;
}

.reason-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Nanum Myeongjo', serif;
    box-shadow: 0 3px 12px rgba(139, 111, 71, 0.3);
}

.reason-content {
    flex: 1;
}

.reason-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    letter-spacing: -0.3px;
}

.reason-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.1px;
}

.reason-content p:last-child {
    margin-bottom: 0;
}

.reason-content strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .about-section,
    .comparison-section,
    .why-expensive-section,
    .products,
    .contact {
        padding: 4rem 0;
    }
    
    .about-section h2,
    .comparison-section h2,
    .why-expensive-section h2,
    .products .section-header h2,
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-intro,
    .about-detail,
    .about-conclusion {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-intro strong,
    .about-conclusion strong {
        font-size: 1.15rem;
    }
    
    .hero-highlight {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        margin-top: 1.2rem;
    }
    
    .comparison-table-wrapper {
        margin: 2rem -1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding: 0.8rem 0.5rem;
        flex-direction: row;
        gap: 0.4rem;
        justify-content: center;
    }
    
    .comparison-table td:first-child i {
        font-size: 0.9rem;
    }
    
    .comparison-table td:first-child strong {
        font-size: 0.85rem;
    }
    
    .product-name-center {
        font-size: 1.3rem;
    }
    
    .products-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-item {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .reason-item {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .reason-content h3 {
        font-size: 1.5rem;
    }
    
    .reason-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .about-section,
    .comparison-section,
    .why-expensive-section {
        padding: 4rem 0;
    }
    
    .about-section h2,
    .comparison-section h2,
    .why-expensive-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.4rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        flex-direction: row;
        gap: 0.3rem;
        justify-content: center;
    }
    
    .comparison-table td:first-child i {
        font-size: 0.9rem;
    }
    
    .product-name-center {
        font-size: 1.2rem;
    }
    
    .hero-highlight {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    
    .about-section,
    .comparison-section,
    .why-expensive-section,
    .products,
    .contact {
        padding: 3rem 0;
    }
}

/* 상품 섹션 개선 */
.products {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.products .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .products-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.6s ease-out;
    min-height: 240px;
}

.product-item:nth-child(1) {
    animation-delay: 0.1s;
}

.product-item:nth-child(2) {
    animation-delay: 0.2s;
}

.product-item:nth-child(3) {
    animation-delay: 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-info {
    margin-bottom: 1rem;
    text-align: center;
}

.product-title {
    text-align: center;
}

.product-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}

.product-name-center {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    letter-spacing: -0.2px;
    display: block;
}

.product-subtitle {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}

.product-price {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.product-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    display: block;
}

.product-action {
    margin-top: 0.5rem;
}

.btn-product {
    display: inline-block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #8b6f47;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    font-size: 0.95rem;
}

.btn-product:hover {
    background: #7a5f3d;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(139, 111, 71, 0.3);
}

/* 문의 섹션 개선 */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    letter-spacing: -0.3px;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    width: 100%;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 600;
}


/* 스크롤 애니메이션 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 섹션 간격 조정 */
section {
    scroll-margin-top: 100px;
}
