.shop-cover-container {
	width: 100%;
	height: 372px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--neutral-colors-gray-400, #E0E0E3);
	position: relative;
}

.shop-option-right {
	position: absolute;
	right: 16px;
	top: 16px;
	z-index: 999;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex-shrink: 0;
	flex-direction: row;
	align-items: center;
}

.shop-option-right div {
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.90);
	text-align: center;
	display: flex;
	padding: 8px;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.shop-option-right div svg {
	width: 24px;
	height: 24px;
	stroke: var(--neutral-colors-gray-800) !important;
}

.shop-option-right a:hover {
	color: var(--hover-orange);
}

.shop-option-right a:hover svg {
	fill: var(--hover-orange);
	color: var(--hover-orange);
	stroke: var(--hover-orange) !important;
}

.shop-cover {
	width: 100%;
	height: 220px;
}

.shop-cover img {
	width: 100%;
	height: 100%;
}

.shop-header-detail {
	display: flex;
	width: 100%;
	height: 152px;
	padding: 24px;
	align-items: center;
	gap: 0;
	background: var(--neutral-colors-white, #FFF);
}

.shop-name-block {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex-shrink: 0;
	width: 50%;
}

.shop-logo {
	display: flex;
	width: 72px;
	height: 72px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.shop-logo-img {
	border-radius: 80px;
	border: 1px solid var(--neutral-colors-gray-400, #E0E0E3);
	width: 72px;
	height: 72px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.shop-name {
	display: flex;
	width: 50%;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	flex-shrink: 0;
}

.shop-brandshop {
	display: flex;
	align-items: center;
	gap: 4px;
}

.shop-brandshop span {
	color: var(--primary-color-deep-blue-600);
	/* Body/B4 SM */
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.shop-name label {
	color: var(--neutral-colors-gray-800, #525255);
	font-feature-settings: 'clig' off, 'liga' off;
	/* Headings/H5 */
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.shop-follower {
	color: var(--neutral-colors-gray-700, #99999C);
	/* Body/B3 */
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.shop-button {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.shop-follower-btn {
	display: flex;
	height: 46px;
	padding: 10px 16px 11px 16px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	border-radius: 10px;
	background: var(--primary-color-deep-blue-600);
	cursor: pointer;
}
shop-follower-btn:hover {
	background: var(--primary-color-deep-blue-800);
}

.shop-follower-btn.active {
	background: var(--primary-colors-orange-600);
	color: var(--neutral-colors-white);
}

.shop-follower-btn.active:hover {
	background: var(--primary-colors-orange-800);
	color: var(--neutral-colors-white);
}

.following-icon {
	font-size: 42px;
	font-weight: 100;
}

.shop-follower-btn span {
	color: var(--white, #FFF);
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Headings/H5 */
	font-family: Prompt;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 11px;
}

.shop-chat-btn {
	display: flex;
	height: 46px;
	padding: 10px 16px 11px 16px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 10px;
	border: 1.5px solid var(--neutral-colors-gray-700);
	background: var(--neutral-colors-white, #FFF);
	cursor: pointer;
}
.shop-chat-btn:hover {
	background: var(--neutral-colors-gray-100);
}

.shop-chat-btn span {
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Headings/H5 */
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	white-space: nowrap;
}

.shop-info {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex: 1 0 0;
}

.shop-info .shop-row {
	display: flex;
	gap: 8px;
	align-self: stretch;
	white-space: nowrap;
	flex-direction: column;
	width: 100%;
}

.shop-info .shop-col {
	display: flex;
	gap: 16px;
	flex-direction: row;
	min-width: 48%;
}

.shop-info .shop-col.office-hours-btn {
	cursor: pointer;
}

.shop-info .shop-col .shop-info-label {
	width: 50%;
	color: var(--neutral-colors-gray-700);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.shop-info .shop-col .shop-info-value {
	width: 50%;
	text-align: right;
	color: var(--neutral-colors-gray-800);
	text-align: right;
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.shop-info .shop-col a {
	color: var(--primary-colors-orange);
	font-feature-settings: 'clig' off, 'liga' off;
	/* Text Link/T3 */
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration-line: underline;
}

.shop-info .shop-col .item {
	display: flex;
	align-items: center;
	gap: 8px;
	align-self: stretch;
}

.shop-info .shop-col .item label {
	color: var(--neutral-colors-gray-700, #99999C);
	/* Body/B3 */
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.shop-info .shop-col .item span {
	color: var(--neutral-colors-gray-800, #525255);
	text-align: right;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/B2 SM */
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.shop-info > div:first-child {
	border-right: 1px solid #E0E0E3;
	padding-right: 24px;
}

.ui.secondary.pointing.menu .item.shop-text-search {
	margin-right: -15px !important;
}
.search-keyword-container {
	margin-top: 0;
}


.shopcoupon-section {
	margin-bottom: 24px;
}
.shopcoupon-section .coupon-list {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.shopcoupon-section .coupon-list .coupon-card .seller-container {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 10px 10px 0px 0px;
	border: 1.5px solid var(--neutral-colors-gray-400, #E0E0E3);
	background: var(--neutral-colors-gray-100, #F9F9FC);
	gap: 8px;
}
.shopcoupon-section .coupon-list .coupon-card .seller-container .img {
	width: 24px;
	height: 24px;
	margin-right: 4px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 30px;
	border: 1px solid var(--neutral-colors-gray-400, #E0E0E3);
}
.shopcoupon-section .coupon-list .coupon-card .container {
	border-radius: 0 0 10px 10px;
}
.coupon-card .container {
	width: unset !important;
	height: 110px;
	overflow: hidden;
}
