/* 아크라포빅 ASSOCIATE PRODUCTS */

@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');


#akrapovic-detail img {
    position: relative;
    left: 0;
    transform: none;
    display: block;
    margin: 0;
}


@media only screen and  (min-width: 768px){
         /* Navigation */
	
		.associated_pipe {
            position: relative;
            top:-5px;
            width:70%;
            height:1px;
            background-color: #000;
            left:15px;
		}
	
        .associated_nav {
            display: flex;
			flex-wrap: wrap;
			width: 1000px;
            max-width : 1000px;
            justify-content: flex-start;
            margin: 0;
        }
        .associated_nav button {
            background-color: #fff;
            width: 25%;
            height: 350px;
            cursor: pointer;
            margin: 0;
			padding: 0;
            border: 0px;
			text-align: left;
        }
        .associated_nav button.active {
            background-color: #f5f5f5;
        }
	
        .associated_nav .em1 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
			font-weight: bold;
            font-size: 9pt;
			margin: 10px 0 10px 15px;
			display: block;
        }
	
        .associated_nav .em2 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 11pt;
			margin: 0 0 0 15px;
			display: block;
        }

        .associated_nav .em3 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 11pt;
			margin: 0 0 0 15px;
			display: block;
        }
	
		.associated_nav img  {
            position: relative !important;
			max-width: 100% !important;
            left: 50% !important;
            top: 0% !important;
			margin: 0px !important;
			display: block !important;
            transform: translate(-50%, 0%) !important;
        }
		

	
        /* Slider */
	

        .associated_slider {
            position: relative;
			background: url('https://s-motors.info/wp-content/uploads/2023/12/associated-3.png') no-repeat;
            background-size: cover;
            width: 1000px;
            height: 650px;
            overflow: hidden;
            margin: 0px;
            top: 0px;
        }
        .associated_slide {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s, transform 0.5s;
            display: block;
        }

        .associated_slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .associated_slide img {
            position: absolute !important;
            max-width: 70% !important;
            left: 50% !important;
            top: 65% !important;
            transform: translate(-50%, -50%) scale(0.8) !important;
            filter: blur(8px) !important;
        }

        .associated_slide.active img {
            transform: translate(-50%, -50%) scale(1) !important;
            filter: blur(0) !important;
        }
        
/* 아크라포빅 ASSOCIATE PRODUCTS */



/* 아크라포빅 HEAR THE SOUND */

.container {
    width: 1000px;
    height: 435px;
    aspect-ratio: 1000 / 435; /* 이미지 비율에 맞춤 */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
	box-sizing: border-box;
    
    /* 버튼 정렬을 위한 Flexbox 설정 */
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 20px;
    padding-left: 50px;
}

/* 배경 이미지를 가짜로 삽입 */
.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/hearthesound_pre.png');
    background-repeat: no-repeat;
	background-position: left top;     /* 🔹 PC에서 원하는 위치 */
    background-size: 1000px auto;      /* 🔹 PC에서 1000px 고정 */
    z-index: 0;
    pointer-events: none;
}

/* 프로그레스바 */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px; /* 또는 .container와 동일한 고정값 */
    height: 10px;
    background-color: transparent;
    overflow: hidden;
    z-index: 3;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #EF4444;
}

/* 버튼 */
.playPauseBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    z-index: 1; /* 배경보다 앞에 */
	margin-bottom: 50px;
}

/* ▶ 아이콘 이미지 (기본 상태) */
.playPauseBtn::before {
    content: "";
    width: 56px;
    height: 56px;
    background: url('https://s-motors.info/wp-content/uploads/2023/12/play.png') no-repeat center center;
    background-size: contain;
    display: block;
    margin-bottom: 10px;
}

/* Hover 시 아이콘 변경 */
.playPauseBtn:hover::before {
    background: url('https://s-motors.info/wp-content/uploads/2023/12/playing.png') no-repeat center center;
    background-size: contain;
}

/* 재생 중 */
.playPauseBtn.playing::before {
    background: url('https://s-motors.info/wp-content/uploads/2023/12/playing.png') no-repeat center center;
    background-size: contain;
}

/* 일시정지 상태 */
.playPauseBtn.paused::before {
    background: url('https://s-motors.info/wp-content/uploads/2023/12/stop.png') no-repeat center center;
    background-size: contain;
}

/* 일시정지 + hover 상태 */
.playPauseBtn.paused:hover::before {
    background: url('https://s-motors.info/wp-content/uploads/2023/12/stopp.png') no-repeat center center;
    background-size: contain;
}

/* 버튼 텍스트 */
.playPauseBtn em {
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;
    font-size: 12pt;
    outline: 1px solid #fff;
    padding: 15px 30px;
    position: relative;
    z-index: 1;
}

/* 버튼 텍스트 배경 효과 */
.playPauseBtn em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #9b0a26;
    opacity: 1;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
}

/* hover 시 배경 확장 */
.playPauseBtn em:hover {
    outline: 1px solid #9b0a26;
}

.playPauseBtn em:hover::after {
    transform: scaleX(1);
}






/* 아크라포빅 DOWNLOAD DOCUMENTS */

        .akra_button-container {
    		width:1000px;
            max-width:1000px;
    		padding-top: 230px;
    		position: relative;
    		background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/documentdownload_pre.png') no-repeat;
                background-size: cover;
                overflow: hidden;
    		margin: 0;
    		flex-direction: column; /* 컨테이너 내의 요소를 세로로 배치합니다. */
    		align-items: flex-start; /* 버튼을 왼쪽으로 정렬합니다. */
		}

        .custom-button {
   		border: none;
    		position: relative;
    		top: 50%;
    		left: 5%;
    		transform: translateY(-50%);
    		height: 90px;
    		line-height: 90px;
    		background-color: transparent;
    		cursor: pointer;
    		overflow: hidden;
    		white-space: nowrap;
    		padding: 0 30px 0 15px;
    		display: block; /* 각 버튼을 새로운 라인에 배치 */
    		margin-bottom: 10px; /* 각 버튼 사이의 여백 설정 */
		}
		
        .custom-button::before {
            content: "";
            display: inline-block;
            width: 40px; /* 이미지 너비 설정 */
            height: 55px; /* 이미지 높이 설정 */
            background: url('https://s-motors.info/wp-content/uploads/2023/12/icon_download.png') no-repeat; /* 이미지 경로 설정 */
            background-size: contain; /* 이미지 크기 조절 */
            margin-right: 10px; /* 이미지와 텍스트 간격 설정 */
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
        }

        .custom-button em {
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
            color: #ffffff;
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 16pt;
        }

        .custom-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            opacity: 0.7;
            transition: transform 0.3s ease-in-out;
            transform: scaleX(0);
            transform-origin: left;
            z-index: -1; /* 글자 뒤로 이동시키기 위한 z-index 설정 */
        }

        .custom-button:hover::after {
            transform: scaleX(1);
        }
		
        .custom-button a {
            color: inherit !important;
            text-decoration: none !important;
        }

/* 아크라포빅 DOWNLOAD DOCUMENTS */



/* 아크라포빅 ASSOCIATED PRODUCTS */

        .associated_button-container {
    		width:1000px;
            max-width:1000px;
    		padding-top: 180px;
    		position: relative;
    		background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/associated_pre.png') no-repeat;
            background-size: cover;
            overflow: hidden;
    		margin: 0;
    		flex-direction: column; /* 컨테이너 내의 요소를 세로로 배치합니다. */
    		align-items: flex-start; /* 버튼을 왼쪽으로 정렬합니다. */
		}

        .associated_custom-button {
			border: none;
    		position: relative;
    		top: 50%;
    		left: 5%;
    		transform: translateY(-50%);
    		height: 90px;
    		line-height: 90px;
    		background-color: transparent;
    		cursor: pointer;
    		overflow: hidden;
    		white-space: nowrap;
    		padding: 0 30px 0 15px;
    		display: block; /* 각 버튼을 새로운 라인에 배치 */
    		margin-bottom: 10px; /* 각 버튼 사이의 여백 설정 */
		}
				
        .associated_custom-button::before {
            content: "";
            display: inline-block;
            width: 40px; /* 이미지 너비 설정 */
            height: 55px; /* 이미지 높이 설정 */
			opacity: 0.8;
            background: url('https://s-motors.info/wp-content/uploads/2023/12/icon_opt-2.png') no-repeat; /* 이미지 경로 설정 */
            background-size: contain; /* 이미지 크기 조절 */
            margin-right: 10px; /* 이미지와 텍스트 간격 설정 */
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
        }

        .associated_custom-button em {
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 16pt;
        }
		
        .associated_custom-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.3;
            transition: transform 0.3s ease-in-out;
            transform: scaleX(0);
            transform-origin: left;
            z-index: -1; /* 글자 뒤로 이동시키기 위한 z-index 설정 */
        }

        .associated_custom-button:hover::after {
            transform: scaleX(1);
        }
		
        .associated_custom-button a {
            color: inherit !important;
            text-decoration: none !important;
        }

/* 아크라포빅 ASSOCIATED PRODUCTS */

}









@media only screen and (max-width: 767px) {

	
	
.container {
    width: 100%;
	max-width:1000px;
    height: auto;
	max-height: 435px;
	aspect-ratio: 1000 / 435; /* 이미지 비율에 맞춤 */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
	box-sizing: border-box;
    
    /* 버튼 정렬을 위한 Flexbox 설정 */
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
    padding-left: 5%;
	padding-bottom: 30px;
}

/* 배경 이미지를 가짜로 삽입 */
.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/hearthesound_pre.png');
    background-repeat: no-repeat;
	background-position: left top;     /* 🔹 PC에서 원하는 위치 */
    background-size: 100% auto;      /* 🔹 PC에서 1000px 고정 */
    z-index: 0;
    pointer-events: none;
}
	


	.progress-container {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw; /* 반응형 넓이 */
		max-width: 1000px;
		height: 8px;
		background-color: transparent;
		overflow: hidden;
		z-index: 3;
	}

	.progress-bar {
		height: 100%;
		background-color: #EF4444;
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 0.3s linear;
		/* ✅ width 없음! */
	}

	.playPauseBtn {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		position: relative;
		background: none;
		border: none;
		cursor: pointer;
		outline: none;
		margin: 0;
		padding: 0;
		z-index: 2;
		overflow: visible;
	}

	.playPauseBtn em {
		color: #fff;
		font-family: 'Noto Sans KR', sans-serif;
		font-weight: bold;
		font-size: 9pt;
		outline: 1px solid #fff;
		padding: 5px 20px;
		position: relative;
		z-index: 1;
	}

	.playPauseBtn em::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: #9b0a26;
		opacity: 1;
		transition: transform 0.3s ease-in-out;
		transform: scaleX(0);
		transform-origin: left;
		z-index: -1;
	}

	.playPauseBtn em:hover {
		outline: 1px solid #9b0a26;
	}

	.playPauseBtn em:hover::after {
		transform: scaleX(1);
	}

	.playPauseBtn::before {
		content: "";
		width: 35px;
		height: 35px;
		background: url('https://s-motors.info/wp-content/uploads/2023/12/play.png') no-repeat center center;
		background-size: contain;
		display: block;
		margin-bottom: 6px;
	}

	.playPauseBtn:hover::before {
		background: url('https://s-motors.info/wp-content/uploads/2023/12/playing.png') no-repeat center center;
		background-size: contain;
	}

	.playPauseBtn.playing::before {
		background: url('https://s-motors.info/wp-content/uploads/2023/12/playing.png') no-repeat center center;
		background-size: contain;
	}

	.playPauseBtn.paused::before {
		background: url('https://s-motors.info/wp-content/uploads/2023/12/stop.png') no-repeat center center;
		background-size: contain;
	}

	.playPauseBtn.paused:hover::before {
		background: url('https://s-motors.info/wp-content/uploads/2023/12/stopp.png') no-repeat center center;
		background-size: contain;
	}
}




/* 아크라포빅 DOWNLOAD DOCUMENTS */


        .akra_button-container {
    		width:1000px;
            max-width:1000px;
    		padding-top: 230px;
    		position: relative;
    		background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/documentdownload_pre.png') no-repeat;
                background-size: cover;
                overflow: hidden;
    		margin: 0;
    		flex-direction: column; /* 컨테이너 내의 요소를 세로로 배치합니다. */
    		align-items: flex-start; /* 버튼을 왼쪽으로 정렬합니다. */
		}

        .custom-button {
   		border: none;
    		position: relative;
    		top: 50%;
    		left: 5%;
    		transform: translateY(-50%);
    		height: 90px;
    		line-height: 90px;
    		background-color: transparent;
    		cursor: pointer;
    		overflow: hidden;
    		white-space: nowrap;
    		padding: 0 30px 0 15px;
    		display: block; /* 각 버튼을 새로운 라인에 배치 */
    		margin-bottom: 10px; /* 각 버튼 사이의 여백 설정 */
		}
		
        .custom-button::before {
            content: "";
            display: inline-block;
            width: 40px; /* 이미지 너비 설정 */
            height: 55px; /* 이미지 높이 설정 */
            background: url('https://s-motors.info/wp-content/uploads/2023/12/icon_download.png') no-repeat; /* 이미지 경로 설정 */
            background-size: contain; /* 이미지 크기 조절 */
            margin-right: 10px; /* 이미지와 텍스트 간격 설정 */
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
        }

        .custom-button em {
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
            color: #ffffff;
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 16pt;
        }

        .custom-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            opacity: 0.7;
            transition: transform 0.3s ease-in-out;
            transform: scaleX(0);
            transform-origin: left;
            z-index: -1; /* 글자 뒤로 이동시키기 위한 z-index 설정 */
        }

        .custom-button:hover::after {
            transform: scaleX(1);
        }
		
        .custom-button a {
            color: inherit !important;
            text-decoration: none !important;
        }

@media only screen and (max-width: 767px) {


        .akra_button-container {
    		width:100%;
    		max-width:1000px;
    		padding-top: 23%;
    		position: relative;
    		background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/documentdownload_pre.png') no-repeat;
                background-size: cover;
                overflow: hidden;
    		margin: 0;
    		flex-direction: column; /* 컨테이너 내의 요소를 세로로 배치합니다. */
    		align-items: flex-start; /* 버튼을 왼쪽으로 정렬합니다. */
		}

        .custom-button {
   		    border: none;
    		position: relative;
    		top: 50%;
    		left: 5%;
    		transform: translateY(-50%);
    		height: 50px;
    		line-height: 50px;
    		background-color: transparent;
    		cursor: pointer;
    		overflow: hidden;
    		white-space: nowrap;
    		padding: 0 30px 0 10px;
    		display: block; /* 각 버튼을 새로운 라인에 배치 */
    		margin-bottom: 10px; /* 각 버튼 사이의 여백 설정 */
		}
		
        .custom-button::before {
            content: "";
            display: inline-block;
            width: 25px; /* 이미지 너비 설정 */
            height: 35px; /* 이미지 높이 설정 */
            background: url('https://s-motors.info/wp-content/uploads/2023/12/icon_download.png') no-repeat; /* 이미지 경로 설정 */
            background-size: contain; /* 이미지 크기 조절 */
            margin-right: 10px; /* 이미지와 텍스트 간격 설정 */
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
        }

        .custom-button em {
            vertical-align: middle; /* 이미지와 텍스트를 수직 정렬하기 위한 설정 */
            color: #ffffff;
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 9pt;
        }
}


/* 아크라포빅 DOWNLOAD DOCUMENTS */



/* 아크라포빅 ASSOCIATED PRODUCTS */

	
         /* Navigation */
	
		.associated_pipe {
            position: relative;
            top:-5px;
            width:70%;
			max-width: 40px;
            height:1px;
            background-color: #000;
            left:10px;
		}
	
        .associated_nav {
            display: flex;
			flex-wrap: wrap;
			width: 1000px;
            max-width : 1000px;
            justify-content: flex-start;
            margin: 0;
        }
        .associated_nav button {
            background-color: #fff;
            width: 25%;
            height: 350px;
            cursor: pointer;
            margin: 0;
			padding: 0;
            border: 0px;
			text-align: left;
        }
        .associated_nav button.active {
            background-color: #f5f5f5;
        }
	
        .associated_nav .em1 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
			font-weight: bold;
            font-size: 9pt;
			margin: 10px 0 10px 10px;
			display: block;
        }
	
        .associated_nav .em2 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 11pt;
			margin: 0 0 0 10px;
			display: block;
        }

        .associated_nav .em3 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 11pt;
			margin: 0 0 0 10px;
			display: block;
        }
	
		.associated_nav img  {
            position: relative;
			max-width: 100%;
            left: 50%;
            top: 0%;
			margin: 0px;
			display: block;
            transform: translate(-50%, 0%);
        }
		

	
        /* Slider */
	

        .associated_slider {
            position: relative;
			background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/associated_pre.png') no-repeat;
            background-size: cover;
            width: 1000px;
            height: 650px;
            overflow: hidden;
            margin: 0px;
            top: 0px;
        }
        .associated_slide {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s, transform 0.5s;
            display: block;
        }

        .associated_slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .associated_slide img {
            position: absolute;
            max-width: 70%;
            left: 50%;
            top: 65%;
            transform: translate(-50%, -50%) scale(0.8);
            filter: blur(8px);
        }

        .associated_slide.active img {
            transform: translate(-50%, -50%) scale(1);
            filter: blur(0);
        }
	
	
@media only screen and (max-width: 767px) {
	
	
         /* Navigation */
	
		.associated_pipe {
            position: relative;
            top:-5px;
            width:30%;
            height:1px;
            background-color: #000;
            left:5%;
		}
	
        .associated_nav {
            display: flex;
			flex-wrap: wrap;
			width: 100%;
            max-width : 1000px;
            justify-content: flex-start;
            margin: 0;
        }
        .associated_nav button {
            background-color: #fff;
            width: 25%;
            height: 40vw;
            cursor: pointer;
            margin: 0;
			padding: 0;
            border: 0px;
			text-align: left;
        }
        .associated_nav button.active {
            background-color: #f5f5f5;
        }
	
        .associated_nav .em1 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
			font-weight: bold;
            font-size: 8pt;
			margin: 5% 0 7% 5%;
			display: block;
        }
	
        .associated_nav .em2 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 9pt;
			margin: 0 0 0 5%;
			display: block;
        }

        .associated_nav .em3 {
            white-space: normal; /* 기본값으로 되돌립니다. */
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: bold;
            font-size: 9pt;
			margin: 0 0 0 5%;
			display: block;
        }
	
		.associated_nav img  {
            position: relative;
			min-width: 100%;
            left: 50%;
            top: 0%;
			margin: 0px;
			display: block;
            transform: translate(-50%, 0%);
        }
		

	
        /* Slider */
	

        .associated_slider {
            position: relative;
			background: url('https://nshinwon.synology.me/Shop/Akrapovic/Contents/associated_pre.png') no-repeat;
            background-size: cover;
			width: 100%;
            max-width: 1000px;
            height: 65vw;
            overflow: hidden;
            margin: 0px;
            top: 0px;
        }
        .associated_slide {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s, transform 0.5s;
            display: block;
        }

        .associated_slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .associated_slide img {
            position: absolute;
            max-width: 70%;
            left: 50%;
            top: 60%;
            transform: translate(-50%, -50%) scale(0.8);
            filter: blur(8px);
        }

        .associated_slide.active img {
            transform: translate(-50%, -50%) scale(1);
            filter: blur(0);
        }
		
	}

/* 아크라포빅 ASSOCIATED PRODUCTS */