/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Warm Earth Tones */
    --primary-green: #5a8a4a;
    --primary-green-dark: #3d6b32;
    --primary-green-light: #7ba96b;
    --secondary-beige: #e8dcc4;
    --secondary-cream: #f5f0e5;
    --accent-brown: #8b6f47;
    --accent-gold: #d4a574;
    
    /* Nature-inspired palette */
    --earth-green: #6b8e23;
    --warm-beige: #ddc9a3;
    --soft-cream: #faf8f3;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #fafaf7;
    --gray-100: #f5f3ed;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Noto Sans KR', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* ===== Header & Navigation ===== */
.header {
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf7 100%);
    box-shadow: 0 2px 10px rgba(90, 138, 74, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
}

.logo-symbol {
    height: 28px;
    width: auto;
}

.logo-full {
    height: 45px;
    width: auto;
}





/* ===== Hero Section ===== */
.hero {
    background: url('../images/hero-background.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 138, 74, 0.7) 0%, rgba(61, 107, 50, 0.8) 50%, rgba(45, 90, 36, 0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    display: block;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.hero-title strong {
    color: #90ee90;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.hero-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 25px;
    flex-wrap: wrap;
}

.process-item {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.process-arrow {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 138, 74, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

.btn-kakao {
    background-color: #FEE500;
    color: #3C1E1E;
    border-color: #FEE500;
}

.btn-kakao:hover {
    background-color: #FDDC3F;
    color: #3C1E1E;
}

.btn-kakao-open {
    background-color: #FEE500;
    color: #3C1E1E;
    border: 2px solid #FEE500;
}

.btn-kakao-open:hover {
    background-color: #FDDC3F;
    color: #3C1E1E;
    border-color: #FDDC3F;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
    border-radius: 25px;
}

.btn-white:hover {
    background-color: var(--secondary-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===== Category Bar ===== */
.category-bar {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-green);
    padding-top: 0;
}

.category-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
    padding: 0;
}

.category-menu li {
    text-align: center;
    position: relative;
}

.category-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: var(--gray-300);
}

.category-menu a {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.category-menu a:hover {
    color: var(--primary-green);
    background-color: var(--gray-50);
}

.category-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    transition: width var(--transition-normal);
}

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

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.section-header h2 strong {
    color: var(--primary-green);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

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

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--secondary-beige);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 138, 74, 0.15);
    border-color: var(--primary-green-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(90, 138, 74, 0.2);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.feature-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 10px 0;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 15px;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 30px;
}

.service-item i {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--gray-600);
    font-size: 16px;
}

/* ===== Order Process Section ===== */
.order-process-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
}

.highlight-step {
    /* 모든 단계 동일한 배경색 적용 */
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(90, 138, 74, 0.3);
    flex-shrink: 0;
}

.step-icon-circle i {
    font-size: 36px;
    color: var(--white);
}

.step-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 22px;
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.step-text-badge {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
    background: rgba(90, 138, 74, 0.1);
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
}

.step-text-top {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.step-text-highlight {
    color: var(--primary-green);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.step-text-highlight strong {
    color: var(--primary-green);
    font-weight: 700;
}

.step-text-warning {
    color: #dc3545;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.step-text-warning small {
    color: #dc3545;
}

.step-text-note {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.step-text-note small {
    color: var(--gray-500);
}

.process-arrow-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.process-arrow-connector i {
    font-size: 32px;
    color: var(--primary-green);
}

/* ===== Categories Section ===== */
.categories {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* 카테고리 아이콘 그리드 */
.category-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    justify-items: center;
}

.category-icon-item {
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: block;
}

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

.category-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.category-icon-circle i {
    font-size: 40px;
    color: var(--white);
}

.category-icon-circle .emoji-icon {
    font-size: 50px;
    line-height: 1;
}

.category-icon-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

/* 카테고리별 색상 */
.category-icon-circle.gift-set {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.category-icon-circle.honey {
    background: linear-gradient(135deg, #9B59B6, #B57BB8);
}

.category-icon-circle.domestic-fruit {
    background: linear-gradient(135deg, #E74C3C, #EC7063);
}

.category-icon-circle.imported {
    background: linear-gradient(135deg, #3498DB, #5DADE2);
}

.category-icon-circle.agricultural {
    background: linear-gradient(135deg, #5a8a4a, #7ba96b);
}

.category-icon-circle.seafood {
    background: linear-gradient(135deg, #6b9fbe, #5585a8);
}

.category-icon-circle.livestock {
    background: linear-gradient(135deg, #d4a574, #c48c5a);
}

.category-icon-circle.side-dish {
    background: linear-gradient(135deg, #E74C3C, #EC7063);
}

/* 상품 운영 핵심 포인트 */
.product-highlights {
    padding: 0;
    margin-bottom: 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-highlights h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.highlight-item:hover {
    transform: none;
    box-shadow: none;
}

.highlight-item i {
    font-size: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f5f0e5, #ddc9a3);
    color: var(--gray-900);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content h2 strong {
    color: var(--primary-green);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background-color: #3d3d3d;
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green-light);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 26px;
}

.footer-symbol {
    height: 26px;
    width: auto;
}

.footer-logo-full {
    height: 40px;
    width: auto;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-info a:hover {
    color: var(--white) !important;
    background: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(90, 138, 74, 0.3);
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-green-light);
    width: 20px;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
}

/* ===== Responsive Design ===== */
/* Mobile line break */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .category-bar {
        top: 0;
    }
    
    .category-menu {
        gap: 10px;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .category-menu li:not(:last-child)::after {
        right: -5px;
        height: 16px;
    }
    
    .category-menu a {
        padding: 14px 8px;
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-process {
        gap: 6px;
        margin: 25px 0 20px;
    }
    
    .process-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .process-arrow {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .features,
    .services,
    .categories,
    .cta {
        padding: var(--section-padding-mobile);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .category-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .category-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .category-icon-circle i {
        font-size: 30px;
    }
    
    .category-icon-circle .emoji-icon {
        font-size: 35px;
    }
    
    .category-icon-item p {
        font-size: 13px;
    }
    
    .product-highlights {
        padding: 30px 20px;
    }
    
    .product-highlights h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .highlights-grid {
        gap: 0;
    }
    
    .highlight-item {
        padding: 15px 20px;
    }
    
    .highlight-item i {
        font-size: 20px;
    }
    
    .highlight-item p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 500px;
    }
    
    .process-arrow-connector {
        padding-top: 0;
        transform: rotate(90deg);
        width: 100%;
        justify-content: center;
    }
    
    .process-arrow-connector i {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}