@charset "UTF-8";
/**
 * Leatherman 헤더 — /brandsite/bs-content/leatherman/assets/css/leatherman-header.css
 * 이 파일이 404면 헤더가 세로로 깨져 보입니다.
 */
.theme-leatherman,
.lm-site-header {
	--lm-shell-max: 1680px;
	--lm-shell-pad: 28px;
	--lm-promo-bg: #393b42;
	--lm-promo-pad-y: 6px;
	--lm-promo-font-size: 12px;
	--lm-promo-line-height: 1.5;
	--lm-main-row-height: 72px;
	--lm-nav-row-height: 44px;
	--lm-search-max-width: 960px;
	--lm-search-height: 44px;
	--lm-search-radius: 0;
	--lm-search-bg: #e8e8e8;
	--lm-search-border: #d0d0d0;
	--lm-logo-width: 200px;
	--lm-logo-max-h: 48px;
	--lm-yellow: #ffd500;
	--lm-charcoal: #3e3e3e;
	--lm-charcoal-dark: #000000;
	--lm-text: #1a1a1a;
	--lm-muted: #757575;
	--lm-sale: #c8102e;
	--lm-header-rule: #d4d4d4;
	--lm-header-hero-gap: 24px;
}

body.theme-leatherman {
	padding-top: 0 !important;
}

.lm-site-header,
header#navibar.lm-site-header {
	background: #fff;
	border-bottom: none;
	position: sticky !important;
	top: 0 !important;
	left: auto !important;
	z-index: 1100;
	width: 100%;
	display: block !important;
	visibility: visible !important;
	transform: none !important;
	box-shadow: none;
}

.lm-shell {
	max-width: var(--lm-shell-max, 1680px);
	width: 100%;
	margin: 0 auto;
	padding-left: var(--lm-shell-pad, 28px);
	padding-right: var(--lm-shell-pad, 28px);
	box-sizing: border-box;
}

@media (min-width: 1500px) {
	.theme-leatherman,
	.lm-site-header {
		--lm-shell-max: 1760px;
		--lm-shell-pad: 36px;
		--lm-search-max-width: 1040px;
	}
}

.lm-promo-bar {
	background: var(--lm-promo-bg, #393b42);
	color: #fff;
	font-size: var(--lm-promo-font-size, 12px);
	font-weight: 400;
	line-height: var(--lm-promo-line-height, 1.5);
	padding: var(--lm-promo-pad-y, 6px) 0;
	height: auto;
	min-height: 0;
	overflow: hidden;
	box-sizing: border-box;
}
.lm-promo-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: auto;
	min-height: 0;
	gap: 16px;
}
.lm-promo-left {
	flex: 1;
	min-width: 0;
}
.lm-promo-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	flex-shrink: 0;
}
.lm-promo-link {
	color: #fff !important;
	text-decoration: none;
	font-size: var(--lm-promo-font-size, 12px);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: var(--lm-promo-line-height, 1.5);
}
.lm-promo-link:hover {
	opacity: 0.85;
	text-decoration: underline;
}

.lm-main-row {
	background: #fff;
	border-bottom: none;
}
.lm-main-inner {
	display: grid;
	grid-template-columns: auto minmax(200px, 1fr) auto;
	grid-template-areas: "logo search icons";
	align-items: center;
	column-gap: 32px;
	min-height: var(--lm-main-row-height, 72px);
	height: var(--lm-main-row-height, 72px);
}
.lm-logo {
	grid-area: logo;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: var(--lm-logo-width, 200px);
}
.lm-site-header .lm-logo img.logo {
	width: var(--lm-logo-width, 200px);
	max-width: var(--lm-logo-width, 200px);
	height: auto;
	max-height: var(--lm-logo-max-h, 48px);
	object-fit: contain;
	object-position: left center;
}
.lm-logo-text {
	font-weight: 700;
	font-size: 1.1rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.lm-search {
	grid-area: search;
	justify-self: center;
	width: 100%;
	max-width: var(--lm-search-max-width, 960px);
	min-width: min(100%, 520px);
}
.lm-search-form {
	display: flex;
	align-items: center;
	height: var(--lm-search-height, 44px);
	background: var(--lm-search-bg, #e8e8e8);
	border: none;
	border-radius: var(--lm-search-radius, 0);
	padding: 0 14px;
	box-shadow: none;
}
.lm-search-icon {
	color: var(--lm-muted, #757575);
	font-size: 22px;
	margin-right: 10px;
	flex-shrink: 0;
}
.lm-search-form input {
	border: none;
	background: var(--lm-search-bg, #e8e8e8) !important;
	flex: 1;
	min-width: 0;
	font-size: 15px;
	outline: none;
	color: var(--lm-text, #1a1a1a);
	-webkit-appearance: none;
}
.theme-leatherman .lm-search-form input.search_bar,
.theme-leatherman .lm-search-form .form-control2 {
	background: var(--lm-search-bg, #e8e8e8) !important;
	color: var(--lm-text, #1a1a1a) !important;
}
.lm-search-form input::placeholder {
	color: #9e9e9e;
}
.lm-search-mic {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	padding: 2px 0 2px 6px;
	margin: 0 0 0 4px;
	cursor: pointer;
	color: var(--lm-text, #1a1a1a);
	line-height: 1;
}
.lm-search-mic .material-icons {
	font-size: 22px;
}
.lm-search-mic:hover {
	opacity: 0.72;
}
.lm-search-mic--active {
	color: var(--lm-sale, #c8102e);
}
.lm-search-mic--active .material-icons {
	animation: lm-mic-pulse 1.2s ease-in-out infinite;
}
@keyframes lm-mic-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.lm-search-mic[hidden] {
	display: none !important;
}
.lm-icons {
	grid-area: icons;
	display: flex;
	align-items: center;
	gap: 2px;
	justify-self: end;
	min-width: 88px;
	justify-content: flex-end;
}
.lm-icons a {
	color: #000;
	padding: 8px;
	line-height: 1;
}
.lm-icons .material-icons {
	font-size: 26px;
}

.lm-nav-row {
	background: #fff;
	border-bottom: none;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}
.lm-nav-row.w3-hide-small .lm-header-divider {
	margin-bottom: var(--lm-header-hero-gap, 24px);
}
.lm-header-divider {
	display: block;
	width: 100%;
	height: 1px;
	min-height: 1px;
	background-color: var(--lm-header-rule, #d4d4d4);
	margin: 0;
	padding: 0;
	border: none;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}
.lm-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--lm-nav-row-height, 44px);
	height: auto;
	padding-top: 4px;
	padding-bottom: 0;
}
.lm-nav-primary ul,
.lm-nav-secondary ul,
.lm-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.lm-nav-primary ul {
	gap: 0 2px;
}
.lm-nav-link {
	display: block;
	padding: 8px 16px 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lm-text, #1a1a1a) !important;
	text-decoration: none;
	white-space: nowrap;
	font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}
.lm-nav-link:hover {
	opacity: 0.7;
}
.lm-nav-link.lm-nav-sale {
	color: var(--lm-sale, #c8102e) !important;
}
.lm-nav-link.lm-nav-link-local {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
	font-size: 14px;
}
.lm-nav-secondary ul {
	gap: 0 20px;
	justify-content: flex-end;
}
.lm-nav-link-sub {
	display: block;
	padding: 8px 0 10px;
	font-size: 13px;
	font-weight: 400;
	color: var(--lm-muted, #757575) !important;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.02em;
}
.lm-nav-link-sub:hover {
	color: var(--lm-text, #1a1a1a) !important;
}

.lm-mobile-toggle,
.lm-mobile-search {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.lm-burger {
	display: block;
	width: 22px;
	height: 2px;
	background: #333;
	margin: 5px 0;
}
.lm-mobile-menu {
	background: #fff;
	border-top: 1px solid #eee;
	padding: 12px var(--lm-shell-pad, 28px);
}
.lm-mobile-menu ul {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.lm-mobile-menu .lm-nav-link {
	padding: 10px 0;
}

.lm-site-header + .row.toprowbar,
.theme-leatherman .bootsnav {
	display: none !important;
}

@media (max-width: 992px) {
	.lm-main-inner {
		grid-template-columns: auto 1fr auto;
		grid-template-areas: "toggle logo actions";
		column-gap: 12px;
		min-height: 64px;
		height: 64px;
	}
	.lm-mobile-toggle {
		grid-area: toggle;
	}
	.lm-logo {
		grid-area: logo;
		justify-self: center;
		min-width: 0;
	}
	.lm-site-header .lm-logo img.logo {
		width: 168px;
		max-width: 168px;
		max-height: 40px;
	}
	.lm-mobile-search {
		grid-area: actions;
	}
	.lm-search {
		display: none !important;
	}
}
