/* midam.top 메인 홈 (mockup) */
.midam-home {
    --home-blue: #2563eb;
    --home-blue-light: #dbeafe;
    --home-navy: #1e3a5f;
    --home-text: #0f172a;
    --home-muted: #64748b;
    --home-border: #e2e8f0;
    --home-max: 1200px;
    --home-gutter: 24px;
    background: #f8fafc;
    color: var(--home-text);
}

.home-container {
    width: 100%;
    max-width: var(--home-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--home-gutter);
    padding-right: var(--home-gutter);
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Page layout (1688.club main-page 동일 구조) */
.home-page {
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 24px var(--home-gutter) 48px;
    box-sizing: border-box;
}

/* Hero + Search (1688.club main-hero 동일, midam 블루 테마) */
.home-hero {
    margin-bottom: 24px;
}

.home-hero-inner {
    padding: 28px 32px 26px;
    border-radius: 24px;
    background: linear-gradient(118deg, #eff6ff 0%, #dbeafe 38%, #f0f9ff 72%, #ffffff 100%);
    border: 1px solid var(--home-border);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.home-hero-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 52%);
    gap: 12px 20px;
    align-items: center;
    margin-bottom: 20px;
}

.home-hero-copy {
    text-align: left;
    margin-bottom: 22px;
}

.home-hero-title {
    margin: 0 0 12px;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: -0.035em;
    color: var(--home-text);
}

.home-hero-title em {
    font-style: normal;
    color: var(--home-blue);
}

.home-hero-desc {
    margin: 0;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--home-muted);
}

.home-hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 440px;
}

.home-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.home-hero-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--home-blue-light);
    color: var(--home-blue);
    border-radius: 10px;
}

.home-hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    font-size: 12px;
    color: var(--home-muted);
    line-height: 1.3;
}

.home-hero-feature-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--home-text);
}

.home-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    user-select: none;
}

.home-hero-visual img {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 993px) {
    .home-hero-visual img {
        margin-top: 30px;
    }
}

@media (min-width: 1280px) {
    .home-hero-top {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 56%);
        gap: 12px 16px;
    }

    .home-hero-visual img {
        max-width: 760px;
    }
}

.home-hero-search-block {
    max-width: 100%;
}

.home-hero .search-tabs {
    justify-content: flex-start;
    margin-bottom: 12px;
}

.home-hero .search-bar-combo {
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.home-hero .search-bar-field {
    border: none;
    border-radius: 0;
    background: transparent;
    padding-left: 20px;
}

.home-hero .search-bar-field--image {
    padding-left: 12px;
}

.home-hero .search-bar-combo:has(.search-bar-field--image.is-field-focused) {
    overflow: visible;
}

.home-hero .search-bar-field--image::after {
    inset: 4px 6px 4px 4px;
    border-radius: calc(999px - 4px);
}

.home-hero .search-submit-btn {
    margin: 5px;
    border-radius: 999px;
    min-height: calc(var(--search-bar-inner-h, 52px) - 10px);
}

.home-hero-keywords {
    margin-top: 16px;
    justify-content: flex-start;
}

.search-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.search-tabs-inner {
    position: relative;
    display: flex;
    gap: 28px;
}

.search-tab {
    padding: 0 4px 10px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--home-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.28s ease;
}

.search-tab.active {
    color: var(--home-blue);
    border-bottom-color: transparent;
}

.search-tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--home-blue);
    pointer-events: none;
    transition:
        left 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: left, width;
}

.search-panels {
    --search-bar-inner-h: 52px;
    position: relative;
    display: grid;
    grid-template-areas: "searchPanel";
    min-height: calc(var(--search-bar-inner-h) + 6px);
}

.search-panel {
    grid-area: searchPanel;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.992);
    transition:
        opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.32s;
    pointer-events: none;
    z-index: 0;
}

.search-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.search-bar-combo {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
    min-height: calc(var(--search-bar-inner-h, 52px) + 6px);
}

.search-bar-field {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: calc(var(--search-bar-inner-h, 52px) + 6px);
    border: 3px solid var(--home-blue);
    border-right: none;
    border-radius: 999px 0 0 999px;
    background: #fff;
    padding: 0 8px 0 22px;
}

.search-bar-field input[type="search"],
.search-bar-field input[type="text"] {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 16px 8px;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.search-camera-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 22px;
    color: var(--home-muted);
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-camera-btn:hover {
    color: var(--home-blue);
    background: var(--home-blue-light);
}

.search-submit-btn {
    flex-shrink: 0;
    gap: 6px;
    padding: 0 28px;
    border-radius: 0 999px 999px 0;
    font-size: 16px;
    font-weight: 600;
}

#mainSearchTextForm .search-submit-btn {
    padding-left: 48px;
    padding-right: 48px;
    min-width: 120px;
}

.search-submit-icon {
    font-size: 18px;
}

.search-bar-field--image {
    position: relative;
    padding: 0 12px 0 16px;
    outline: none;
    border-radius: 999px;
    border-right: 3px solid var(--home-blue);
}

.home-hero .search-bar-field--image {
    border: none;
    border-radius: calc(999px - 6px);
    margin: 4px 0 4px 4px;
    background: #fff;
}

.search-bar-field--image::after {
    content: '';
    position: absolute;
    inset: -2px 6px -2px -2px;
    border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 3;
}

.search-bar-field--image.is-field-focused::after {
    opacity: 1;
}

.image-search-zone {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--search-bar-inner-h, 52px);
    cursor: pointer;
}

.image-search-zone.is-dragover {
    background: var(--home-blue-light);
    border-radius: calc(999px - 8px);
}

.image-search-zone.is-image-preparing {
    opacity: 0.72;
    pointer-events: none;
}

.image-search-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.image-search-zone.has-file .image-search-file-input {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.image-search-zone-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

.image-search-zone-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--home-blue-light);
    color: var(--home-blue);
}

.image-search-zone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.image-search-zone-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--home-text);
    line-height: 1.35;
}

.image-search-zone-meta {
    font-size: 12px;
    color: var(--home-muted);
    line-height: 1.3;
}

.image-search-zone-filled {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: var(--search-bar-inner-h, 52px);
    pointer-events: none;
}

.image-search-zone-filled[hidden],
.image-search-zone-empty[hidden] {
    display: none !important;
}

.image-search-thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--home-border);
    background: #f5f5f5;
}

.image-search-filename {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--home-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-search-change-btn {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    padding: 6px 14px;
    border: 1px solid var(--home-blue);
    border-radius: 999px;
    background: #fff;
    color: var(--home-blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
}

.image-search-change-btn:hover {
    background: var(--home-blue-light);
}

body.image-search-busy {
    overflow: hidden;
}

.image-search-busy-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.48);
    pointer-events: auto;
    touch-action: none;
}

.image-search-busy-overlay[hidden] {
    display: none !important;
}

.image-search-busy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 320px;
    padding: 26px 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
    text-align: center;
}

.image-search-busy-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--home-blue-light);
    border-top-color: var(--home-blue);
    border-radius: 50%;
    animation: imageSearchBusySpin 0.85s linear infinite;
}

.image-search-busy-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.image-search-busy-desc {
    margin: 0;
    font-size: 13px;
    color: var(--home-muted);
    line-height: 1.45;
}

@keyframes imageSearchBusySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.popular-keywords {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.popular-keywords-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--home-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.keyword-chip {
    padding: 6px 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.keyword-chip:hover {
    background: var(--home-blue-light);
    color: var(--home-blue);
}

.home-flash {
    margin-bottom: 16px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
}

.home-flash--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.home-flash--ok {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.home-results-section {
    margin-bottom: 32px;
    scroll-margin-top: 88px;
}

.home-results-section[hidden] {
    display: none !important;
}

.home-results-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
}

.home-results-head h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.results-desc {
    font-size: 14px;
    color: var(--home-muted);
    margin-top: 6px;
}

.home-results-close {
    font-size: 14px;
    font-weight: 600;
    color: var(--home-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
}

.home-results-close:hover {
    color: var(--home-blue);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-product-grid .product-item {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-product-grid .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.home-product-grid .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f5;
    flex-shrink: 0;
}

.home-product-grid .product-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-product-grid .product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 2rem;
}

.home-product-grid .product-title {
    padding: 10px 12px 8px;
    margin: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.home-product-grid .product-title-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
    font-weight: 500;
    color: var(--home-text);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.home-product-grid .product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px 12px;
    margin-top: auto;
    flex-shrink: 0;
}

.home-product-grid .price-krw {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.35;
    color: var(--home-text);
}

.home-product-grid .price-cny {
    font-size: 12px;
    line-height: 1.3;
    color: var(--home-muted);
}

.product-load-box {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
}

.product-load-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--home-blue-light);
    border-top-color: var(--home-blue);
    border-radius: 50%;
    animation: imageSearchBusySpin 0.85s linear infinite;
}

.product-load-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--home-muted);
}

.product-empty-state,
.search-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--home-muted);
}

.product-empty-state .empty-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--home-blue);
}

.product-empty-state .empty-title {
    font-weight: 700;
    color: var(--home-text);
    margin-bottom: 4px;
}

.image-search-result-preview {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--home-muted);
}

.image-search-result-preview img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--home-border);
}

/* Service cards */
.home-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.home-service-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.home-service-card.featured {
    background: linear-gradient(160deg, #eff6ff 0%, #fff 100%);
    border-color: #bfdbfe;
}

.home-service-card.placeholder {
    border-style: dashed;
    background: #fafbfc;
    cursor: default;
}

.home-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.home-service-icon.blue { background: #dbeafe; color: #2563eb; }
.home-service-icon.navy { background: #1e3a5f; color: #fff; }
.home-service-icon.muted { background: #f1f5f9; color: #94a3b8; }

.home-service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.home-service-card p {
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.55;
    flex: 1;
}

.home-service-link {
    margin-top: 16px;
    color: var(--home-blue);
    font-weight: 700;
    font-size: 14px;
}

/* Notice + stats */
.home-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    padding-bottom: 40px;
}

.home-notice,
.home-stats {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 24px;
}

.home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.home-section-head h2 {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-section-head a {
    font-size: 13px;
    color: var(--home-blue);
    text-decoration: none;
    font-weight: 600;
}

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

.home-notice-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.home-notice-list li:last-child { border-bottom: none; }

.home-notice-list a {
    color: var(--home-text);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-notice-list a:hover { color: var(--home-blue); }

.home-notice-list time {
    color: var(--home-muted);
    font-size: 12px;
    white-space: nowrap;
}

.home-notice-list .badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.home-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
}

.home-stat {
    text-align: center;
    padding: 16px 8px;
    border-radius: 14px;
    background: #f8fafc;
}

.home-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--home-blue);
    margin-bottom: 4px;
}

.home-stat span {
    font-size: 13px;
    color: var(--home-muted);
}

/* Process */
.home-process {
    background: #fff;
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
    padding: 40px 0;
}

.home-process-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 28px;
}

.home-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-process-steps li {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--home-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.home-process-steps strong {
    display: block;
    margin-bottom: 4px;
}

.home-process-steps small {
    color: var(--home-muted);
    font-size: 12px;
}

/* Features */
.home-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 36px;
    padding-bottom: 48px;
}

.home-feature {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
}

.home-feature i {
    font-size: 28px;
    color: var(--home-blue);
    margin-bottom: 10px;
}

.home-feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.home-feature span {
    font-size: 12px;
    color: var(--home-muted);
}

@media (max-width: 992px) {
    .home-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .home-hero-top {
        grid-template-columns: 1fr;
    }
    .home-hero-visual {
        order: -1;
        justify-content: center;
    }
    .home-hero-visual img {
        max-width: 300px;
        margin-top: 0;
    }
    .home-services { grid-template-columns: 1fr; }
    .home-info { grid-template-columns: 1fr; }
    .home-process-steps { grid-template-columns: repeat(2, 1fr); }
    .home-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .home-page {
        padding: 16px var(--home-gutter) 32px;
    }

    .home-hero-inner {
        padding: 20px 16px 18px;
        border-radius: 18px;
    }

    .home-hero-copy {
        margin-bottom: 16px;
        text-align: center;
    }

    .home-hero-title {
        font-size: 1.35rem;
    }

    .home-hero-desc {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-features {
        max-width: none;
        margin: 0 auto;
    }

    .home-hero .search-tabs {
        justify-content: center;
    }

    .search-tabs-inner {
        gap: 16px;
    }

    .home-hero .search-bar-combo {
        flex-wrap: nowrap;
        border-radius: 12px;
    }

    .home-hero .search-bar-field {
        flex: 1 1 0;
        min-width: 0;
        border: none;
        border-radius: 0;
        padding-left: 10px;
        padding-right: 2px;
        min-height: 44px;
    }

    .home-hero .search-bar-field input[type="search"] {
        padding: 10px 4px;
        font-size: 14px;
    }

    .home-hero .search-camera-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 18px;
    }

    .home-hero .search-submit-btn {
        padding: 0 12px;
        margin: 4px;
        border-radius: 8px;
        font-size: 13px;
        min-height: 36px;
    }

    #mainSearchTextForm .search-submit-btn {
        padding-left: 18px;
        padding-right: 18px;
        min-width: 72px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-product-grid .product-title {
        padding: 8px 10px 6px;
    }

    .home-product-grid .product-title-text {
        font-size: 13px;
        line-height: 18px;
        max-height: 36px;
    }

    .home-product-grid .price-krw {
        font-size: 14px;
    }

    .home-product-grid .price-cny {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .home-process-steps,
    .home-features { grid-template-columns: 1fr; }
}
