/* 월간 유레카 공통 UI 보정
   better-ui 원칙: 구조는 테두리로, 깊이는 투명 그림자로, 움직임은 필요한 곳에만 적용 */

:root {
    --ui-surface: #ffffff;
    --ui-surface-soft: #f5f1e8;
    --ui-ink: #17211e;
    --ui-muted: #69736f;
    --ui-line: rgba(23, 33, 30, 0.1);
    --ui-line-strong: rgba(23, 33, 30, 0.16);
    --ui-accent-soft: rgba(26, 92, 78, 0.08);
    --ui-shadow-sm: 0 1px 2px rgba(19, 48, 41, 0.05), 0 6px 18px rgba(19, 48, 41, 0.05);
    --ui-shadow-md: 0 2px 4px rgba(19, 48, 41, 0.05), 0 14px 36px rgba(19, 48, 41, 0.1);
    --ui-shadow-lg: 0 4px 10px rgba(19, 48, 41, 0.07), 0 24px 64px rgba(19, 48, 41, 0.13);
    --ui-radius-sm: 10px;
    --ui-radius-md: 18px;
    --ui-radius-lg: 24px;
    --ui-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    color: var(--ui-ink);
    background: #f8f5ee;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    color: #fff;
    background: var(--eureka-deep);
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(36, 167, 167, 0.28);
    outline-offset: 3px;
}

/* 헤더 */
.header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--ui-line);
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.04), 0 8px 28px rgba(19, 48, 41, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-top,
.header-bottom {
    background: transparent;
    background-image: none;
}

.header-top {
    border-bottom: 1px solid rgba(23, 33, 30, 0.07);
}

.header-top-container,
.header-bottom-container {
    background: transparent;
}

.header-top-user-row {
    width: min(100%, 1240px);
    min-height: 38px;
    padding: 7px 24px;
    border-bottom: 0;
}

.header-top-brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    width: min(100%, 1240px);
    min-height: 76px;
    padding: 10px 24px 14px;
    border-bottom: 0;
}

.header-top-actions,
.user-menu {
    gap: 8px;
}

.header-top-brand-row .logo {
    grid-column: 2;
    width: auto;
    flex: 0 0 auto;
    justify-content: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    border-radius: var(--ui-radius-sm);
}

.site-logo-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--ui-ink);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.site-logo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--eureka-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.site-logo-eyebrow::after {
    content: '';
    width: 1px;
    height: 18px;
    background: var(--ui-line-strong);
}

.header-top-brand-row .search-bar {
    grid-column: 3;
    justify-self: end;
    display: block;
    flex: 0 1 340px;
    max-width: 340px;
    margin-left: auto;
}

.header-top-brand-row .search-form {
    gap: 0;
    min-height: 44px;
    border: 1px solid var(--ui-line-strong);
    border-radius: 999px;
    background: #f8f6f1;
    box-shadow: inset 0 1px 2px rgba(19, 48, 41, 0.035);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-top-brand-row .search-form:focus-within {
    border-color: rgba(26, 92, 78, 0.52);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 92, 78, 0.08);
}

.header-top-brand-row .search-input {
    min-width: 0;
    padding: 0 4px 0 18px;
    color: var(--ui-ink);
    font-size: 14px;
}

.header-top-brand-row .search-input::placeholder {
    color: #8b938f;
}

.header-top-brand-row .search-btn,
.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    color: var(--eureka-deep);
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.header-top-brand-row .search-btn svg,
.header-search-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.header-top-brand-row .search-btn:hover,
.header-top-brand-row .search-btn:focus-visible,
.header-search-toggle:hover,
.header-search-toggle:focus-visible {
    color: var(--eureka-deep);
    background: var(--ui-accent-soft);
}

.header-mobile-actions,
.mobile-search-panel {
    display: none;
}

.user-btn,
.main-btn-outline,
.main-btn2 {
    border-color: var(--ui-line-strong);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.04);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.user-btn {
    min-height: 30px;
    padding: 4px 12px;
    color: var(--ui-muted);
    font-size: 13px;
}

.user-btn:hover,
.main-btn-outline:hover,
.main-btn2:hover {
    color: var(--eureka-deep) !important;
    border-color: rgba(26, 92, 78, 0.34);
    background: var(--ui-accent-soft);
    box-shadow: 0 3px 10px rgba(19, 48, 41, 0.07);
}

.header-bottom {
    border-top: 0;
}

.header-bottom-container {
    max-width: 1240px;
    padding: 0 18px;
}

.nav-menu {
    gap: 4px;
}

.nav-menu a {
    padding: 14px 13px;
    border-radius: var(--ui-radius-sm);
    color: #34403c;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.015em;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-menu a::after {
    display: none;
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus-visible,
.nav-menu > li > a.is-current {
    color: var(--eureka-deep);
    background: var(--ui-accent-soft);
}

.nav-menu > li > a.is-current::after {
    display: block;
    width: 18px;
    height: 2px;
    left: 50%;
    bottom: 7px;
    border-radius: 2px;
    background: var(--eureka-deep);
    transform: translateX(-50%);
}

.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.58;
}

.dropdown-toggle {
    padding-right: 20px !important;
}

.dropdown-menu {
    min-width: 188px;
    padding: 8px;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-shadow-md);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: var(--ui-radius-sm);
    color: var(--ui-muted);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--eureka-deep);
    background: var(--ui-accent-soft);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--eureka-deep);
    border-color: var(--ui-line-strong);
}

.cart-icon {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 10px;
    line-height: 15px;
}

.hamburger-btn {
    border: 1px solid var(--ui-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--ui-shadow-sm);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hamburger-btn:hover {
    border-color: rgba(26, 92, 78, 0.3);
    background: var(--ui-accent-soft);
}

.hamburger-btn:active,
.cart-link:active,
.user-btn:active,
.main-btn:active,
.btn:active,
.btn-cart:active {
    transform: scale(0.96);
}

.hamburger-btn span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--eureka-deep);
    transition: top 220ms var(--ui-ease), opacity 160ms ease, transform 220ms var(--ui-ease);
}

.hamburger-btn span:nth-child(1) { top: 14px; }
.hamburger-btn span:nth-child(2) { top: 21px; }
.hamburger-btn span:nth-child(3) { top: 28px; }
.hamburger-btn.active span:nth-child(1),
.hamburger-btn.active span:nth-child(3) { top: 21px; }

.banner-arrow svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.banner-dot {
    padding: 0;
    border: 0;
}

.notice-popup-dot {
    padding: 0;
    border: 0;
}

/* 공통 컨트롤과 콘텐츠 표면 */
.btn {
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.06);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.btn-primary,
.btn-success,
.btn-cart,
.main-btn {
    box-shadow: 0 2px 4px rgba(19, 48, 41, 0.12), 0 8px 18px rgba(19, 48, 41, 0.1);
}

.btn-primary:hover,
.btn-success:hover,
.btn-cart:hover,
.main-btn:hover {
    box-shadow: 0 3px 6px rgba(19, 48, 41, 0.13), 0 12px 24px rgba(19, 48, 41, 0.14);
}

.form-control {
    min-height: 46px;
    border-color: var(--ui-line-strong);
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(19, 48, 41, 0.03);
}

.card,
.product-card {
    border-color: transparent;
    box-shadow: var(--ui-shadow-sm);
    transition: transform 260ms var(--ui-ease), box-shadow 260ms var(--ui-ease), border-color 260ms ease;
}

.card:hover,
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ui-shadow-md);
}

.card-img,
.product-img,
.product-main-image,
.related-product-img {
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

.pagination {
    gap: 8px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-color: var(--ui-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.04);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pagination a:hover {
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-1px);
}

/* 메인페이지 */
.banner-slider {
    width: calc(100% - 40px);
    max-width: 1480px;
    height: clamp(420px, 37vw, 560px);
    margin: 20px auto 0;
    border-radius: var(--ui-radius-lg);
    box-shadow: var(--ui-shadow-lg);
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

.banner-slider::after {
    display: none;
}

.banner-slide img {
    filter: none;
}

.banner-arrow {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(15, 29, 25, 0.48);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.banner-arrow:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(15, 29, 25, 0.68);
    transform: translateY(-50%) scale(1.04);
}

.banner-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

@media (min-width: 769px) {
    .banner-slider {
        overflow: visible;
    }

    .banner-slide {
        overflow: hidden;
        border-radius: inherit;
    }

    .banner-arrow.prev {
        left: -20px;
    }

    .banner-arrow.next {
        right: -20px;
    }
}

.banner-dot {
    transition: width 240ms var(--ui-ease);
}

.container,
.container-full-white > .section {
    max-width: 1240px;
}

.container.container-full-white {
    max-width: 100%;
}

.home-paths {
    padding: 58px 0 26px;
    background: #f8f5ee;
}

.home-paths .container {
    padding-top: 0;
    padding-bottom: 0;
}

.home-paths-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.home-paths-heading h2 {
    margin: 6px 0 0;
    color: var(--ui-ink);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.home-paths-heading p {
    max-width: 360px;
    margin: 0 0 3px;
    color: var(--ui-muted);
    font-size: 15px;
    line-height: 1.65;
    text-align: right;
}

.section-kicker {
    display: block;
    color: var(--eureka-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.3;
}

.home-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-path-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 176px;
    padding: 24px;
    overflow: hidden;
    color: var(--ui-ink);
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius-md);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.04);
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ui-ease), box-shadow 220ms var(--ui-ease);
}

.home-path-card::after {
    content: '';
    position: absolute;
    right: -48px;
    bottom: -62px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(26, 92, 78, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.home-path-card-featured {
    border-color: rgba(26, 92, 78, 0.2);
    background: #e9f2ed;
}

.home-path-card:hover,
.home-path-card:focus-visible {
    color: var(--ui-ink);
    border-color: rgba(26, 92, 78, 0.34);
    background: #fff;
    box-shadow: var(--ui-shadow-md);
    transform: translateY(-3px);
}

.home-path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--eureka-deep);
    border: 1px solid rgba(26, 92, 78, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
}

.home-path-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-path-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.home-path-copy strong {
    color: var(--ui-ink);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.home-path-copy > span:last-child {
    color: var(--ui-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-path-meta {
    color: var(--eureka-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-path-arrow,
.section-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms var(--ui-ease);
}

.home-path-card:hover .home-path-arrow,
.home-path-card:focus-visible .home-path-arrow,
.section-link:hover svg,
.section-link:focus-visible svg {
    transform: translateX(3px);
}

.section-header {
    align-items: center;
    border-bottom: 1px solid var(--ui-line);
}

.section-heading-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ui-ink);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.section-title::before {
    content: '';
    width: 5px;
    height: 24px;
    border-radius: 3px;
    background: var(--eureka-deep);
}

.section-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 10px;
    border: 0;
    border-radius: var(--ui-radius-sm);
    color: var(--ui-muted);
    font-weight: 700;
    text-transform: none;
    gap: 4px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.section-link:hover,
.section-link:focus-visible {
    color: var(--eureka-deep);
    border-bottom-color: transparent;
    background: var(--ui-accent-soft);
}

.product-card {
    border-radius: var(--ui-radius-md);
    animation-name: uiCardReveal;
    animation-duration: 480ms;
    animation-timing-function: var(--ui-ease);
}

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

.product-card::after {
    display: none;
}

.product-img-wrapper {
    background: #f7f5f0;
}

.product-card .btn-cart.small-btn {
    box-shadow: 0 2px 4px rgba(19, 48, 41, 0.12), 0 8px 18px rgba(19, 48, 41, 0.1);
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card .btn-cart.small-btn:hover {
    transform: translateY(-1px);
}

.container-full-white {
    border-top-color: var(--ui-line);
}

.seo-faq-section {
    border-top-color: var(--ui-line);
    background: #f8f5ee;
}

.faq-grid {
    gap: 18px;
}

.faq-item {
    padding: 24px;
    border: 0;
    border-radius: var(--ui-radius-md);
    box-shadow: var(--ui-shadow-sm);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
}

.faq-item h3::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--eureka-mint);
}

.seo-link-row a {
    border-color: rgba(26, 92, 78, 0.24);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1px 2px rgba(19, 48, 41, 0.04);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.seo-link-row a:hover,
.seo-link-row a:focus-visible {
    border-color: var(--eureka-deep);
    background: var(--ui-accent-soft);
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-1px);
}

/* 푸터 */
.footer {
    position: relative;
    overflow: hidden;
    padding: 64px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    background: #122b25;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, calc(100% - 40px));
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-50%);
}

.footer-container {
    position: relative;
    max-width: 1240px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
}

.footer-brand-section {
    grid-column: 1 / -1;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section h3 {
    font-size: 22px;
}

.footer-section h4 {
    font-size: 15px;
}

.footer-section p,
.footer-section li {
    line-height: 1.7;
}

.footer-section a {
    display: inline-flex;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.62);
    transition: color 180ms ease, transform 180ms ease;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 36px auto 0;
    color: rgba(255, 255, 255, 0.45);
}

.kakao-channel-float {
    box-shadow: 0 2px 4px rgba(60, 30, 30, 0.12), 0 12px 28px rgba(60, 30, 30, 0.2) !important;
}

.kakao-channel-float:active {
    transform: scale(0.96) !important;
}

@media (max-width: 1024px) {
    .header-top-brand-row .search-bar {
        flex-basis: 260px;
        max-width: 260px;
    }

    .nav-menu {
        gap: 1px;
    }

    .nav-menu a {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 13px;
    }

    .home-paths-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-path-card {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        min-height: 190px;
        padding: 20px;
    }

    .home-path-arrow {
        position: absolute;
        top: 22px;
        right: 18px;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 52px;
    }

    .footer-brand-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 64px;
    }

    .header-top {
        min-height: 64px;
    }

    .header-top-brand-row {
        display: flex;
        width: 100%;
        min-height: 64px;
        padding: 10px 14px;
        justify-content: space-between;
    }

    .header-top-brand-row .logo {
        width: auto;
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
    }

    .header-top-brand-row .search-bar {
        display: none;
    }

    .header-mobile-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }

    .header-search-toggle {
        display: inline-flex;
        border: 1px solid var(--ui-line);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--ui-shadow-sm);
    }

    .mobile-search-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        display: block;
        padding: 12px 14px;
        border-top: 1px solid var(--ui-line);
        background: rgba(250, 248, 243, 0.98);
        box-shadow: 0 18px 42px rgba(19, 48, 41, 0.16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-search-panel[hidden] {
        display: none;
    }

    .mobile-search-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        max-width: 560px;
        margin: 0 auto;
    }

    .mobile-search-form input,
    .mobile-search-form button {
        min-height: 46px;
        border-radius: 12px;
        font: inherit;
    }

    .mobile-search-form input {
        min-width: 0;
        padding: 0 14px;
        color: var(--ui-ink);
        border: 1px solid var(--ui-line-strong);
        background: #fff;
        font-size: 16px;
    }

    .mobile-search-form button {
        padding: 0 18px;
        color: #fff;
        border: 1px solid var(--eureka-deep);
        background: var(--eureka-deep);
        font-size: 14px;
        font-weight: 700;
    }

    .site-logo-text {
        gap: 7px;
        font-size: 20px;
        letter-spacing: -0.035em;
    }

    .site-logo-eyebrow {
        gap: 7px;
        font-size: 11px;
        letter-spacing: 0.02em;
    }

    .site-logo-eyebrow::after {
        height: 15px;
    }

    .hamburger-btn {
        flex: 0 0 44px;
    }

    .mobile-menu {
        top: 100% !important;
        padding: 0;
        border-top: 1px solid var(--ui-line);
        background: rgba(250, 248, 243, 0.98);
        box-shadow: 0 18px 42px rgba(19, 48, 41, 0.16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: max-height 280ms var(--ui-ease);
    }

    .mobile-menu.active {
        max-height: calc(100dvh - 64px) !important;
    }

    .nav-mobile {
        padding: 18px 14px 24px;
    }

    .mobile-nav-group + .mobile-nav-group {
        margin-top: 22px;
    }

    .mobile-nav-group h2 {
        margin: 0 0 9px;
        padding: 0 3px;
        color: var(--ui-muted);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    .mobile-nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 !important;
    }

    .mobile-nav-list li {
        border: 0;
    }

    .mobile-nav-list a {
        min-height: 48px;
        padding: 11px 12px !important;
        border: 1px solid var(--ui-line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.78);
        color: #34403c;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
        transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .mobile-nav-list a:active {
        color: var(--eureka-deep);
        border-color: rgba(26, 92, 78, 0.28);
        background: var(--ui-accent-soft);
        opacity: 1;
        transform: scale(0.96);
    }

    .mobile-nav-list a.is-current {
        color: var(--eureka-deep);
        border-color: rgba(26, 92, 78, 0.28);
        background: var(--ui-accent-soft);
        box-shadow: inset 3px 0 0 var(--eureka-deep);
    }

    .mobile-account-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 22px 0 0;
        padding: 18px 3px 0;
        border-top: 1px solid var(--ui-line);
    }

    .mobile-account-list a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 8px 13px;
        color: var(--eureka-deep);
        border: 1px solid rgba(26, 92, 78, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        font-weight: 700;
    }

    .header + .main-content {
        padding-top: 64px !important;
    }

    .banner-slider {
        width: 100%;
        max-width: none;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        outline: 0;
    }

    .banner-slider::after {
        display: none;
    }

    .home-paths {
        padding: 42px 0 14px;
    }

    .home-paths-heading {
        display: block;
        margin-bottom: 18px;
    }

    .home-paths-heading h2 {
        font-size: 26px;
    }

    .home-paths-heading p {
        max-width: none;
        margin-top: 10px;
        font-size: 14px;
        text-align: left;
    }

    .home-path-card {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 0;
        padding: 20px;
    }

    .home-paths-grid {
        grid-template-columns: 1fr;
    }

    .home-path-arrow {
        position: static;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        gap: 9px;
        font-size: 20px;
    }

    .section-kicker {
        font-size: 10px;
    }

    .section-title::before {
        width: 4px;
        height: 20px;
    }

    .product-card:hover,
    .card:hover {
        transform: none;
        box-shadow: var(--ui-shadow-sm);
    }

    .product-card {
        animation: none;
    }

    .faq-item {
        padding: 20px;
    }

    .footer {
        padding: 42px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-brand-section {
        grid-column: auto;
    }

    .footer-section:not(:first-child) {
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

@media (max-width: 390px) {
    .site-logo-eyebrow {
        display: none;
    }

    .site-logo-text {
        font-size: 20px;
    }

    .header-top-brand-row {
        padding-right: 10px;
        padding-left: 12px;
    }

    .header-mobile-actions {
        gap: 4px;
    }

    .home-path-card {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 17px 15px;
    }

    .home-path-icon {
        width: 42px;
        height: 42px;
    }

    .home-path-copy strong {
        font-size: 16px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .product-card:hover,
    .card:hover,
    .seo-link-row a:hover,
    .pagination a:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .banner-slide,
    .banner-arrow,
    .banner-dot,
    .product-card,
    .card,
    .btn,
    .btn-cart,
    .main-btn,
    .user-btn,
    .main-btn2,
    .nav-menu a,
    .dropdown-menu a,
    .mobile-menu,
    .mobile-nav-list a,
    .header-search-toggle,
    .mobile-search-form button,
    .home-path-card,
    .home-path-arrow,
    .hamburger-btn,
    .hamburger-btn span,
    .footer-section a,
    .seo-link-row a,
    .pagination a {
        transition-duration: 0.01ms !important;
        animation: none !important;
    }
}
