/* ==========================================================================
   Fixed Bottom Banner
   Figma: 388px, column, gap 16px, padding 24px, radius 8px,
   box-shadow 0 0 16px rgba(0,0,0,0.16), bottom-right fixed
   ========================================================================== */

.fixed-banner {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 50;
	width: 388px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.fixed-banner.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Images area - Figma: 340×185, 3 stacked images */
.fixed-banner-images {
	position: relative;
	width: 340px;
	height: 185px;
	background: #F8F8F8;
	border-radius: 4px;
	overflow: hidden;
}

.fixed-banner-images-bg {
	position: absolute;
	inset: 0;
	background: #F8F8F8;
}

.fixed-banner-img {
	position: absolute;
	width: 135px;
	height: 101px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 2.5px 10px rgba(0, 0, 0, 0.08);
}

.fixed-banner-img--back {
	left: 28px;
	top: 55px;
}

.fixed-banner-img--mid {
	right: 28px;
	top: 55px;
}

.fixed-banner-img--front {
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
}

/* Button - Figma: red bg, space-between, padding 16px 24px 16px 40px, radius 4px */
.fixed-banner-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	background: #E51F1F;
	color: #fff;
	border-radius: 4px;
	padding: 16px 24px 16px 40px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s;
}

.fixed-banner-button:hover {
	background: #c41a1a;
	color: #fff;
}

.fixed-banner-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.fixed-banner-arrow::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: -2px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
	.fixed-banner {
		width: calc(100% - 32px);
		left: 16px;
		right: 16px;
		bottom: 16px;
		padding: 16px;
	}

	.fixed-banner-images {
		width: 100%;
		height: 140px;
	}
}
