/* =========================================
   Dplaza 매장가입 페이지
========================================= */

#selfStorePage {
	width: 785px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 0 60px;
	font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
	color: #22252a;
	box-sizing: border-box;
}

#selfStorePage *,
#selfStorePage *::before,
#selfStorePage *::after {
	box-sizing: border-box;
}


/* =========================================
   첫 번째 소개 이미지
========================================= */

.selfStoreHero {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #f6f7f9;
	border-radius: 0;
}

.selfStoreHeroImage {
	display: block;
	width: 785px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 0;
}


/* =========================================
   버튼 영역
========================================= */

.selfStoreAction {
	width: 100%;
	padding: 28px 30px 25px;
	background: #ffffff;
	border: 1px solid #e8eaee;
	border-top: 0;
	box-shadow: 0 14px 35px rgba(27, 31, 36, 0.07);
}

.selfStoreActionInner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 14px;
	width: 100%;
	margin: 0 auto;
}


/* 공통 버튼 */

.selfStoreButton {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(50% - 7px);
	min-height: 72px;
	padding: 12px 47px 12px 17px;
	border-radius: 7px;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.selfStoreButton:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.selfStoreButton:focus {
	outline: 3px solid rgba(221, 16, 50, 0.16);
	outline-offset: 2px;
}


/* 빨간색 주버튼 */

.selfStoreButtonPrimary {
	color: #ffffff;
	background: #dd1032;
	border: 1px solid #dd1032;
	box-shadow: 0 8px 20px rgba(221, 16, 50, 0.2);
}

.selfStoreButtonPrimary:hover {
	color: #ffffff;
	background: #c80e2c;
	border-color: #c80e2c;
	box-shadow: 0 12px 25px rgba(221, 16, 50, 0.27);
}


/* 흰색 보조버튼 */

.selfStoreButtonSecondary {
	color: #25282d;
	background: #ffffff;
	border: 1px solid #dfe2e7;
	box-shadow: 0 6px 17px rgba(27, 31, 36, 0.06);
}

.selfStoreButtonSecondary:hover {
	color: #dd1032;
	background: #fafafa;
	border-color: #cfd3d9;
	box-shadow: 0 10px 22px rgba(27, 31, 36, 0.1);
}


/* 버튼 아이콘 */

.selfStoreButtonIcon {
	display: flex;
	flex: 0 0 42px;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 13px;
	border-radius: 50%;
}

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

.selfStoreButtonPrimary .selfStoreButtonIcon {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.16);
}

.selfStoreButtonSecondary .selfStoreButtonIcon {
	color: #dd1032;
	background: #fcecef;
}


/* 버튼 문구 */

.selfStoreButtonText {
	display: block;
	min-width: 0;
	line-height: 1.4;
}

.selfStoreButtonText strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.7px;
	white-space: nowrap;
}

.selfStoreButtonText small {
	display: block;
	margin-top: 3px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.7px;
}

.selfStoreButtonPrimary .selfStoreButtonText small {
	color: rgba(255, 255, 255, 0.8);
}

.selfStoreButtonSecondary .selfStoreButtonText small {
	color: #858a92;
}


/* 버튼 오른쪽 화살표 */

.selfStoreButtonArrow {
	position: absolute;
	top: 50%;
	right: 17px;
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}

.selfStoreButton:hover .selfStoreButtonArrow {
	transform: translate(3px, -50%);
}

.selfStoreButtonPrimary .selfStoreButtonArrow {
	color: rgba(255, 255, 255, 0.9);
}

.selfStoreButtonSecondary .selfStoreButtonArrow {
	color: #9da2aa;
}


/* 준비 안내 문구 */

.selfStoreActionGuide {
	position: relative;
	margin: 18px 0 0;
	color: #737983;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.7px;
	text-align: center;
}

.selfStoreActionGuide::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 8px 2px 0;
	background: #dd1032;
	border-radius: 50%;
}




/* =========================================
   두 번째 영역 : 매장가입의 장점
========================================= */

.selfStoreBenefit {
	width: 100%;
	padding: 68px 30px 36px;
	background:
		linear-gradient(
			180deg,
			#f7f8fa 0%,
			#f4f6f8 100%
		);
	border-top: 1px solid #eceef1;
}


/* 제목 영역 */

.selfStoreSectionHeading {
	margin: 0 0 34px;
	text-align: center;
}

.selfStoreSectionEyebrow {
	position: relative;
    display: inline-block;
    margin: 0 0 22px;
    color: #dd1032;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.selfStoreSectionEyebrow::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	width: 38px;
	height: 1px;
	background: #dd1032;
	border-radius: 10px;
	transform: translateX(-50%);
}

.selfStoreSectionHeading h2 {
	margin: 0;
	color: #22252a;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.5px;
}

.selfStoreSectionHeading h2 strong {
	color: #dd1032;
	font-weight: 700;
}

.selfStoreSectionHeading p {
	 margin: 12px 0 0;
    color: #666c75;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: -0.7px;
    word-break: keep-all;
    text-align: center;
}


/* 카드 그리드 */

.selfStoreBenefitGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}


/* 개별 카드 */

.selfStoreBenefitCard {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 194px;
	padding: 25px 25px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e8eaee;
	border-radius: 7px;
	box-shadow: 0 9px 24px rgba(28, 32, 37, 0.065);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
}

.selfStoreBenefitCard:hover {
	transform: translateY(-3px);
	border-color: #e1e4e8;
	box-shadow: 0 14px 32px rgba(28, 32, 37, 0.11);
}


/* 카드 아이콘 */

.selfStoreBenefitIcon {
	display: flex;
	flex: 0 0 102px;
	align-items: center;
	justify-content: center;
	width: 102px;
	height: 102px;
	margin-right: 23px;
	color: #dd1032;
	background:
		linear-gradient(
			145deg,
			#fff8f9 0%,
			#fcecef 100%
		);
	border-radius: 50%;
}

.selfStoreBenefitIcon img {
	width: 62px;
	height: 62px;
}

/* 카드 내용 */

.selfStoreBenefitContent {
	position: relative;
	z-index: 2;
	flex: 1;
	min-width: 0;
}

.selfStoreBenefitNumber {
	position: relative;
	display: inline-block;
	margin: 0 0 15px;
	color: #dd1032;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.selfStoreBenefitNumber::after {
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	margin-top: 8px;
	background: #dd1032;
	border-radius: 10px;
}

.selfStoreBenefitContent h3 {
	margin: 0;
	color: #25282d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.65px;
	word-break: keep-all;
}

.selfStoreBenefitContent p {
	margin: 12px 0 0;
	color: #686e77;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: -0.35px;
	word-break: keep-all;
}


/* 우측 하단 연한 번호 장식 */

.selfStoreBenefitCard::after {
	position: absolute;
	right: 16px;
	bottom: 7px;
	color: rgba(221, 16, 50, 0.08);
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -3px;
}

.selfStoreBenefitCard:nth-child(1)::after {
	content: "01";
}

.selfStoreBenefitCard:nth-child(2)::after {
	content: "02";
}

.selfStoreBenefitCard:nth-child(3)::after {
	content: "03";
}

.selfStoreBenefitCard:nth-child(4)::after {
	content: "04";
}


/* 신뢰 안내 */

.selfStoreTrustNotice {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	margin: 29px auto 0;
	padding: 11px 24px;
	color: #555b63;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #e6e9ed;
	border-radius: 30px;
}

.selfStoreTrustIcon {
	display: flex;
	flex: 0 0 27px;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	margin-right: 10px;
	color: #dd1032;
}

.selfStoreTrustIcon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.selfStoreTrustNotice p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.35px;
}

/* =========================================
   세 번째 영역 : Dplaza 주요 기능
========================================= */

.selfStoreFeature {
	width: 100%;
	padding: 68px 30px 36px;
	background: #ffffff;
	border-top: 1px solid #eceef1;
}

.selfStoreFeatureHeading {
	margin-bottom: 34px;
}

.selfStoreFeatureHeading h2 strong {
	color: #dd1032;
}


/* 2열 × 3행 */

.selfStoreFeatureGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}


/* 기능 카드 */

.selfStoreFeatureCard {
	position: relative;
	min-width: 0;
	min-height: 184px;
	padding: 25px 25px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e8eaee;
	border-radius: 7px;
	box-shadow: 0 8px 22px rgba(28, 32, 37, 0.06);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.selfStoreFeatureCard:hover {
	transform: translateY(-3px);
	border-color: #dde1e6;
	box-shadow: 0 14px 30px rgba(28, 32, 37, 0.1);
}


/* 아이콘과 제목 한 줄 */

.selfStoreFeatureTop {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 17px;
}

.selfStoreFeatureIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 102px;
	height: 102px;
	margin-right: 16px;
	background: linear-gradient(
		145deg,
		#fff8f9 0%,
		#fcecef 100%
	);
	border-radius: 50%;
}

.selfStoreFeatureIcon img {
	display: block;
	width: 62px;
	height: 62px;
	object-fit: contain;
	border: 0;
}


/* 제목 */

.selfStoreFeatureTop h3 {
	flex: 1;
	min-width: 0;
	margin: 0;
	color: #25282d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.7px;
	word-break: keep-all;
}


/* 설명은 아이콘 아래 전체 폭 */

.selfStoreFeatureCard > p {
	margin: 0;
	color: #686e77;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.7px;
	word-break: keep-all;
}


/* 카드 상단 빨간 포인트선 */

.selfStoreFeatureCard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	width: 36px;
	height: 3px;
	background: #dd1032;
	border-radius: 0 0 4px 4px;
	opacity: 0;
	transform: translateY(-3px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
}

.selfStoreFeatureCard:hover::before {
	opacity: 1;
	transform: translateY(0);
}


/* 하단 안내 */

.selfStoreFeatureNotice {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	margin: 30px auto 0;
	padding: 11px 24px;
	color: #555b63;
	background: #f7f8fa;
	border: 1px solid #e8eaee;
	border-radius: 30px;
}

.selfStoreFeatureNoticeIcon {
	display: flex;
	flex: 0 0 27px;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	margin-right: 10px;
	color: #dd1032;
}

.selfStoreFeatureNoticeIcon svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.selfStoreFeatureNotice p {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.7px;
}

/* =========================================
   네 번째 영역 : Dplaza 매장개설 절차
========================================= */

.selfStoreProcess {
	width: 100%;
	padding: 68px 30px 36px;
	background: linear-gradient(
		180deg,
		#f8f9fa 0%,
		#ffffff 100%
	);
	border-top: 1px solid #eceef1;
}


/* 제목 */

.selfStoreProcessHeading {
	margin-bottom: 35px;
}

.selfStoreProcessHeading h2 {
	margin: 0;
    color: #22252a;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1.4px;
    word-break: keep-all;
}

.selfStoreProcessHeading h2 strong {
	color: #dd1032;
}

.selfStoreProcessHeading p {
	font-size: 16px;
}


/* =========================================
    3단계 세로 배치
========================================= */

.selfStoreProcessGrid {
	display: block;
	width: 100%;
}


/* 단계별 가로형 카드 */

.selfStoreProcessCard {
	position: relative;
	width: 100%;
	min-height: 0;
	padding: 25px 25px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 7px;
	box-shadow: 0 9px 26px rgba(28, 32, 37, 0.065);
	margin-bottom: 16px;
}

/* 카드 상단 */

.selfStoreProcessCardHead {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 72px;
}

.selfStoreProcessLargeNumber {
	display: block;
	flex: 0 0 88px;
	width: 88px;
	margin-right: 18px;
	color: #f5bfc8;
	font-size: 62px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -4px;
}

.selfStoreProcessTitle {
	flex: 1;
	min-width: 0;
}

.selfStoreProcessTitle span {
	display: block;
	margin-bottom: 5px;
	color: #dd1032;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -.7px;
}

.selfStoreProcessTitle h3 {
	margin: 0;
	color: #25282d;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -.7px;
}


/* 구분선 */

.selfStoreProcessDivider {
	width: 100%;
	height: 1px;
	margin: 19px 0 21px;
	background: #e8eaed;
}

/* 카드 본문 */

.selfStoreProcessBody {
	width: 100%;
}

/* 단계 소개 문구 */

.selfStoreProcessIntro {
	min-height: 0;
	margin: 0 0 18px;
	color: #525861;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: -0.4px;
	word-break: keep-all;
}

/* =========================================
   상세 준비 목록
========================================= */

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

.selfStoreProcessList li {
	position: relative;
	margin: 0;
	padding-left: 16px;
	color: #555b63;
	font-size: 14px;
	line-height: 1.65;
	letter-spacing: -0.35px;
	word-break: keep-all;
}

.selfStoreProcessList li:first-child {
	margin-top: 0;
}

.selfStoreProcessList li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 5px;
	height: 5px;
	background: #dd1032;
	border-radius: 50%;
}

.selfStoreProcessList strong {
	display: block;
	margin-bottom: 3px;
	color: #30343a;
	font-size: 15px;
	font-weight: 700;
}

.selfStoreProcessList span {
	display: block;
	color: #737982;
	font-size: 15px;
	line-height: 1.4;
	letter-spacing: -.7px;
}

.selfStoreProcessSimpleList {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 24px;
}

.selfStoreProcessSimpleList strong {
	margin: 0;
	font-size: 15px;
}

.selfStoreProcessSimpleList li {
	margin-top: 8px;
}


/* =========================================
   접수 문자 안내
========================================= */

.selfStoreProcessMessage {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 20px 20px;
	background: #faf5f6;
	border: 1px solid #f4e3e6;
	border-radius: 11px;
	text-align: center;
}

.selfStoreProcessMessage p {
	margin: 0;
	color: #555b63;
	font-size: 15px;
	line-height: 1.7;
	word-break: keep-all;
}

.selfStoreProcessMessage p + p {
	margin-top: 9px;
}

.selfStoreProcessMessage strong {
	color: #dd1032;
	font-weight: 700;
}

/* =========================================
   STEP별 내부 레이아웃
========================================= */

.selfStoreProcessStep01 .selfStoreProcessList {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 17px 32px;
}

.selfStoreProcessStep02 .selfStoreProcessBody {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
	align-items: stretch;
	gap: 27px;
}

.selfStoreProcessStep03 .selfStoreProcessBody {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
	align-items: stretch;
	gap: 27px;
}

/* =========================================
   매장 오픈 완료 안내
========================================= */

.selfStoreProcessComplete {
	margin: 0;
}

.selfStoreProcessCompleteItem {
	display: flex;
	align-items: flex-start;
	padding: 15px 13px;
	background: #faf5f6;
	border: 1px solid #f4e5e8;
	border-radius: 7px;
}

.selfStoreProcessCompleteItem + .selfStoreProcessCompleteItem {
	margin-top: 11px;
}

.selfStoreProcessCheck {
	display: flex;
	flex: 0 0 27px;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	margin: 1px 11px 0 0;
	color: #dd1032;
	background: #ffffff;
	border: 1px solid #dd1032;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
}

.selfStoreProcessCompleteItem p {
	margin: 0;
	color: #555b63;
	font-size: 15px;
	line-height: 1.4;
	letter-spacing: -.7px;
	word-break: keep-all;
}

.selfStoreProcessCompleteItem strong {
	color: #30343a;
	font-weight: 700;
}


/* 처리기간 */

.selfStoreProcessTime {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 15px;
	background: #ffffff;
	border: 1px dashed #d9dde2;
	border-radius: 7px;
	text-align: center;
}

.selfStoreProcessTime span {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 11px;
	color: #dd1032;
	background: #fcecef;
	border-radius: 18px;
	font-size: 15px;
	font-weight: 700;
}

.selfStoreProcessTime p {
	margin: 0;
	color: #555b63;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	word-break: keep-all;
}

.selfStoreProcessTime strong {
	display: block;
	margin-top: 3px;
	color: #dd1032;
	font-size: 18px;
	font-weight: 700;
}


/* =========================================
   단계 사이 화살표
========================================= */

.selfStoreProcessArrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 58px;
}

.selfStoreProcessArrow span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #ffffff;
	background: #dd1032;
	border-radius: 50%;
	box-shadow: 0 6px 14px rgba(221, 16, 50, 0.2);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}


/* =========================================
   하단 준비 TIP
========================================= */

.selfStoreProcessTip {
	display: flex;
	align-items: stretch;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e6e8ec;
	border-radius: 7px;
	box-shadow: 0 7px 20px rgba(28, 32, 37, 0.045);
}

.selfStoreProcessTipTitle {
	display: flex;
	flex: 0 0 145px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	padding: 15px;
	color: #dd1032;
	background: #fcecef;
	text-align: center;
}

.selfStoreProcessTipTitle span {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.selfStoreProcessTipTitle strong {
	display: block;
	margin-top: 3px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.selfStoreProcessTipList {
	display: grid;
	flex: 1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	padding: 19px 5px;
}

.selfStoreProcessTipList p {
	display: flex;
	align-items: flex-start;
	min-height: 48px;
	margin: 0;
	padding: 3px 17px;
	color: #555b63;
	border-left: 1px solid #e7e9ed;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: -0.7px;
	word-break: keep-all;
}

.selfStoreProcessTipList p:first-child {
	border-left: 0;
}

.selfStoreProcessTipList p span {
	display: flex;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 1px 8px 0 0;
	color: #dd1032;
	border: 1px solid #dd1032;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
}

/* =========================================
   반응형
========================================= */

@media screen and (max-width: 820px) {
	#selfStorePage {
		width: 100%;
		padding-bottom: 35px;
	}

	.selfStoreAction {
		padding: 22px 18px;
	}

	.selfStoreActionInner {
		flex-direction: column;
	}

	.selfStoreButton {
		width: 100%;
	}

	.selfStoreBenefit,
	.selfStoreFeature,
	.selfStoreProcess {
		padding: 48px 18px 28px;
	}

	.selfStoreSectionHeading h2,
	.selfStoreProcessHeading h2 {
		font-size: 27px;
	}

	.selfStoreSectionHeading p,
	.selfStoreProcessHeading p {
		font-size: 14px;
	}

	.selfStoreSectionHeading p br,
	.selfStoreProcessHeading p br {
		display: none;
	}

	.selfStoreBenefitGrid,
	.selfStoreFeatureGrid {
		grid-template-columns: 1fr;
	}

	.selfStoreProcessCard {
		padding: 22px 19px;
		border-radius: 12px;
	}

	.selfStoreProcessCardHead {
		min-height: 62px;
	}

	.selfStoreProcessLargeNumber {
		flex-basis: 64px;
		width: 64px;
		margin-right: 13px;
		font-size: 46px;
	}

	.selfStoreProcessTitle span {
		font-size: 14px;
	}

	.selfStoreProcessTitle h3 {
		font-size: 19px;
	}

	.selfStoreProcessDivider {
		margin: 15px 0 17px;
	}

	.selfStoreProcessIntro {
		font-size: 14px;
	}

	.selfStoreProcessStep01 .selfStoreProcessList,
	.selfStoreProcessSimpleList {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.selfStoreProcessStep02 .selfStoreProcessBody,
	.selfStoreProcessStep03 .selfStoreProcessBody {
		display: block;
	}

	.selfStoreProcessList li {
		font-size: 13px;
	}

	.selfStoreProcessList strong {
		font-size: 14px;
	}

	.selfStoreProcessList span {
		font-size: 12px;
	}

	.selfStoreProcessMessage,
	.selfStoreProcessTime {
		margin-top: 18px;
		padding: 17px 15px;
	}

	.selfStoreProcessMessage p,
	.selfStoreProcessCompleteItem p,
	.selfStoreProcessTime p {
		font-size: 13px;
	}

	.selfStoreProcessArrow {
		height: 48px;
	}

	.selfStoreProcessArrow span {
		width: 28px;
		height: 28px;
		font-size: 16px;
	}

	.selfStoreProcessTip {
		display: block;
	}

	.selfStoreProcessTipTitle {
		min-height: 0;
		flex-direction: row;
		padding: 13px 15px;
	}

	.selfStoreProcessTipTitle span {
		margin-right: 6px;
	}

	.selfStoreProcessTipTitle strong {
		margin-top: 0;
		font-size: 17px;
	}

	.selfStoreProcessTipList {
		display: block;
		padding: 7px 15px 12px;
	}

	.selfStoreProcessTipList p {
		min-height: 0;
		padding: 10px 0;
		border-top: 1px solid #eceef1;
		border-left: 0;
	}

	.selfStoreProcessTipList p:first-child {
		border-top: 0;
	}
}

/* =========================================
   다섯 번째 영역 : 안전한 매장등록 및 상담문의
========================================= */

.selfStoreSecurity {
	width: 100%;
	padding: 68px 30px 36px;
	background: #ffffff;
}


/* =========================================
   상단 제목
========================================= */

.selfStoreSecurityHeading {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 35px;
	text-align: left;
}

.selfStoreSecurityHeadingIcon {
	display: flex;
	flex: 0 0 96px;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	margin-right: 24px;
	background: linear-gradient(
		145deg,
		#fff8f9 0%,
		#fcecef 100%
	);
	border-radius: 50%;
}

.selfStoreSecurityHeadingIcon img {
	display: block;
	width: 66px;
	height: 66px;
	object-fit: contain;
	border: 0;
}

.selfStoreSecurityHeadingText {
	min-width: 0;
}

.selfStoreSecurityHeadingText h2 {
	margin: 0;
	color: #22252a;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -1.4px;
	word-break: keep-all;
}

.selfStoreSecurityHeadingText h2 strong {
	color: #dd1032;
	font-weight: 700;
}

.selfStoreSecurityHeadingText p {
	margin: 12px 0 0;
	color: #666c75;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: -0.7px;
	word-break: keep-all;
	text-align: center;
}


/* =========================================
   보안 및 신뢰 안내
========================================= */

.selfStoreSecurityGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		#fffafb 0%,
		#fff6f7 100%
	);
	border: 1px solid #f2dfe3;
	border-radius: 7px;
}

.selfStoreSecurityCard {
	position: relative;
	min-width: 0;
	padding: 20px 12px;
	text-align: center;
}

.selfStoreSecurityCard + .selfStoreSecurityCard::before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 0;
	width: 1px;
	background: #f0d7dc;
}

.selfStoreSecurityIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 16px;
	background: rgba(221, 16, 50, 0.08);
	border-radius: 50%;
}

.selfStoreSecurityIcon img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
	border: 0;
}

.selfStoreSecurityCard h3 {
	margin: 0;
	color: #dd1032;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.7px;
	word-break: keep-all;
}

.selfStoreSecurityCard p {
	margin: 10px 0 0;
	color: #555b63;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.7px;
	word-break: keep-all;
}


/* =========================================
   하단 매장개설 유도
========================================= */

.selfStoreSecurityCta {
	width: 100%;
	padding-top: 18px;
}

.selfStoreSecurityCta > p {
	margin: 0 0 20px;
	color: #30343a;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: -0.7px;
	text-align: center;
	word-break: keep-all;
}

.selfStoreSecurityCta > p strong {
	color: #dd1032;
	font-weight: 700;
}


/* 맨 위 버튼 CSS를 그대로 재사용 */

.selfStoreSecurityButtons {
	gap: 14px;
}

.selfStoreSecurityButtons .selfStoreButton {
	min-height: 74px;
}

.selfStoreButtonIcon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
	border: 0;
}


/* =========================================
   상담문의
========================================= */

.selfStoreConsult {
	display: grid;
	grid-template-columns:
		minmax(0, 1.45fr)
		minmax(0, 0.9fr)
		minmax(0, 0.9fr);
	align-items: center;
	width: 100%;
	margin-top: 18px;
	padding: 20px 20px;
	background: #f8f9fa;
	border: 1px solid #e3e6ea;
	border-radius: 7px;
	box-shadow: 0 7px 20px rgba(28, 32, 37, 0.045);
}

.selfStoreConsultIntro {
	display: flex;
	align-items: center;
	min-width: 0;
	padding-right: 20px;
}

.selfStoreConsultIntroText {
	min-width: 0;
}

.selfStoreConsultIntroText h3 {
	margin-bottom: 4px;
    color: #444950;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
	letter-spacing: -0.7px;
}

.selfStoreConsultIntroText p {
	margin: 8px 0 0;
	color: #666c75;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.3px;
	word-break: keep-all;
}


/* 전화번호 */

.selfStoreConsultPhone {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 74px;
	padding: 0 17px;
	border-left: 1px solid #e0e3e7;
}

.selfStoreConsultPhoneIcon {
	display: flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: 12px;
	background: #fcecef;
	border-radius: 50%;
}

.selfStoreConsultPhoneIcon img {
	display: block;
	width: 29px;
	height: 29px;
	object-fit: contain;
	border: 0;
}

.selfStoreConsultPhoneText {
	min-width: 0;
}

.selfStoreConsultPhoneText span {
	display: block;
	margin-bottom: 4px;
	color: #444950;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.7px;
}

.selfStoreConsultPhoneText a {
	display: block;
	color: #dd1032;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.7px;
	text-decoration: none;
	white-space: nowrap;
}

.selfStoreConsultPhoneText a:hover {
	color: #b90d29;
	text-decoration: underline;
}


/* 마지막 전화 안내 */

.selfStoreConsultGuide {
	margin: 18px 0 0;
	color: #737982;
	font-size: 15px;
	font-weight: 400;
	 line-height: 1.4;
	letter-spacing: -0.7px;
	text-align: center;
}
