.acs-shell {
	--acs-primary: #bf0000;
	--acs-accent: #ef4444;
	--acs-surface: #ffffff;
	--acs-background: #f3f4f6;
	--acs-text: #1f2937;
	--acs-muted: #6b7280;
	--acs-radius: 12px;
	--acs-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
	--acs-grid-pc: 2;
	--acs-grid-tablet: 2;
	--acs-grid-mobile: 1;
	--acs-shell-radius: calc(var(--acs-radius) + 12px);
	--acs-widget-radius: calc(var(--acs-radius) + 6px);
	color: var(--acs-text);
	margin: 32px auto;
}

.acs-shell--search,
.acs-shell--feed {
	max-width: 1200px;
}

.acs-shell * {
	box-sizing: border-box;
}

.acs-shell a,
.acs-shell button,
.acs-shell input,
.acs-shell select,
.acs-shell textarea {
	font: inherit;
}

.acs-widget,
.acs-results-shell,
.acs-detail-modal__dialog,
.acs-ai-modal__dialog {
	background: var(--acs-surface);
	border: 1px solid #e5e7eb;
	border-radius: var(--acs-shell-radius);
	box-shadow: var(--acs-shadow);
}

.acs-widget {
	overflow: hidden;
}

.acs-results-shell {
	margin-top: 18px;
	padding: 24px;
	border-color: #fecdd3;
	box-shadow: 0 18px 36px rgba(244, 63, 94, 0.14);
}

.acs-shell--feed .acs-results-shell {
	margin-top: 0;
}

.acs-widget__header,
.acs-widget__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	background: #f9fafb;
	border-bottom: 1px solid #f3f4f6;
}

.acs-widget__footer {
	border-top: 1px solid #f3f4f6;
	border-bottom: 0;
	font-size: 12px;
}

.acs-widget__body {
	padding: 24px;
}

.acs-widget__title,
.acs-results-head__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--acs-text);
}

.acs-widget__title-icon,
.acs-results-head__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--acs-primary);
}

.acs-widget__tabs {
	display: inline-flex;
	align-items: center;
	padding: 4px;
	background: #e5e7eb;
	border-radius: calc(var(--acs-radius) + 2px);
}

.acs-widget__tabs--single {
	background: transparent;
	padding: 0;
}

.acs-widget__tab {
	border: 0;
	background: transparent;
	color: #6b7280;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1;
	padding: 12px 24px;
	border-radius: calc(var(--acs-radius) - 2px);
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.acs-widget__tab:hover {
	color: #374151;
	background: rgba(255, 255, 255, 0.55);
}

.acs-widget__tab.is-active,
.acs-widget__tabs--single .acs-widget__tab {
	background: #ffffff;
	color: var(--acs-primary);
	font-weight: 700;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acs-search-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.acs-search-field {
	position: relative;
	flex: 1 1 520px;
}

.acs-search-field__icon {
	position: absolute;
	inset: 0 auto 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	color: #9ca3af;
	pointer-events: none;
}

.acs-search-field__svg {
	width: 20px;
	height: 20px;
}

.acs-search-input,
.acs-select,
.acs-ai-modal__textarea {
	width: 100%;
	min-height: 52px;
	padding: 14px 18px;
	border: 1px solid #d1d5db;
	border-radius: calc(var(--acs-radius) + 4px);
	background: #ffffff;
	color: var(--acs-text);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.acs-search-input {
	padding-left: 52px;
	background: #f9fafb;
	font-size: 1.05rem;
}

.acs-search-input::placeholder,
.acs-ai-modal__textarea::placeholder {
	color: #9ca3af;
}

.acs-search-input:focus,
.acs-select:focus,
.acs-ai-modal__textarea:focus {
	outline: none;
	border-color: transparent;
	background: #ffffff;
	box-shadow: 0 0 0 2px rgba(191, 0, 0, 0.22);
}

.acs-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
	padding-right: 44px;
}

input.acs-select[type="date"] {
	background-image: none;
	padding-right: 18px;
}

.acs-button {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: calc(var(--acs-radius) + 4px);
	font-family: inherit !important;
	font-size: 1rem !important;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: normal !important;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	-webkit-text-fill-color: currentColor;
	color: inherit !important;
	overflow: visible !important;
	white-space: nowrap;
	text-indent: 0;
	text-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
}

.acs-button:hover {
	transform: translateY(-1px);
}

.acs-button:disabled,
.acs-button.is-loading {
	opacity: 0.85;
	cursor: wait;
	transform: none;
}

.acs-button__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.acs-button__label {
	display: inline !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: 1.2 !important;
	letter-spacing: inherit !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	white-space: nowrap;
	-webkit-text-fill-color: currentColor !important;
}

.acs-button--primary {
	background: linear-gradient(90deg, var(--acs-primary), var(--acs-accent));
	color: #ffffff !important;
	box-shadow: 0 10px 22px rgba(191, 0, 0, 0.22);
}

.acs-button--ghost {
	background: linear-gradient(180deg, #fff7f7 0%, #ffe4e6 100%);
	border-color: #fecdd3;
	color: #9f1239 !important;
	box-shadow: 0 8px 18px rgba(244, 63, 94, 0.08);
}

.acs-button--submit {
	flex: 0 0 auto;
	min-width: 176px;
	font-size: 1.125rem !important;
}

.acs-spinner {
	width: 20px;
	height: 20px;
	animation: acs-spin 1s linear infinite;
}

.acs-spinner__track {
	opacity: 0.25;
}

.acs-spinner__fill {
	opacity: 0.75;
}

@keyframes acs-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.acs-filter-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.acs-filter-grid--golf {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.acs-field-inline {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.acs-field-inline span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #6b7280;
	padding-left: 4px;
}

.acs-flag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.acs-flag-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid #d1d5db;
	border-radius: calc(var(--acs-radius) + 2px);
	background: #ffffff;
	color: #4b5563;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.acs-flag-chip input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.acs-flag-chip:has(input:checked) {
	border-color: transparent;
	background: linear-gradient(90deg, var(--acs-primary), var(--acs-accent));
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(191, 0, 0, 0.18);
}

.acs-inline-status {
	min-height: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #9ca3af;
}

.acs-inline-status[data-state="error"] {
	color: #dc2626;
	font-weight: 600;
}

.acs-inline-status[data-state="error"]::before {
	content: "";
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3e%3c/svg%3e") center / contain no-repeat;
	mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3e%3c/svg%3e") center / contain no-repeat;
}

.acs-creditline {
	margin-left: auto;
	color: #9ca3af;
	font-weight: 500;
}

.acs-creditline a {
	color: inherit;
	text-decoration: none;
}

.acs-results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.acs-results-head__eyebrow {
	margin: 0 0 4px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9ca3af;
}

.acs-results-head__heading {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--acs-text);
}

.acs-card-grid {
	display: grid;
	grid-template-columns: repeat(var(--acs-grid-pc), minmax(0, 1fr));
	gap: 20px;
}

.acs-card-stack {
	display: grid;
	gap: 20px;
}

.acs-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
	border: 1px solid #fecdd3;
	border-radius: calc(var(--acs-radius) + 10px);
	box-shadow: 0 16px 34px rgba(244, 63, 94, 0.12);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acs-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 40px rgba(244, 63, 94, 0.18);
}

.acs-card--list,
.acs-card--ranking,
.acs-card--highlight {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.acs-card__media {
	position: relative;
	background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
	min-height: 240px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.acs-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acs-card__media.is-placeholder .acs-card__image {
	object-fit: contain;
	padding: 24px;
}

.acs-card__badge {
	all: unset;
	box-sizing: border-box;
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	min-width: 52px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(191, 0, 0, 0.92);
	color: #ffffff !important;
	font-family: inherit !important;
	font-size: 0.75rem !important;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	overflow: visible !important;
	text-indent: 0;
	text-shadow: none !important;
	-webkit-text-fill-color: currentColor;
}

.acs-card__badge-label {
	display: inline !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	white-space: nowrap;
	-webkit-text-fill-color: currentColor !important;
}

.acs-card__rank {
	position: absolute;
	right: 16px;
	top: 16px;
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	min-height: 84px;
	padding: 10px 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 241, 242, 0.98) 100%);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
	backdrop-filter: blur(14px);
	color: #111827;
	text-align: center;
}

.acs-card__rank::after {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	pointer-events: none;
}

.acs-card__rank-label {
	position: relative;
	z-index: 1;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.72;
}

.acs-card__rank-number {
	position: relative;
	z-index: 1;
	margin-top: 2px;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1;
}

.acs-card__rank--first {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 214, 0.98) 30%, rgba(245, 201, 74, 0.95) 100%);
	border-color: rgba(255, 248, 214, 0.92);
	box-shadow: 0 24px 42px rgba(194, 138, 0, 0.3);
	color: #7c4a00;
}

.acs-card__rank--second {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.98) 32%, rgba(186, 198, 214, 0.95) 100%);
	border-color: rgba(241, 245, 249, 0.92);
	box-shadow: 0 22px 38px rgba(100, 116, 139, 0.26);
	color: #334155;
}

.acs-card__rank--third {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 237, 213, 0.98) 32%, rgba(198, 120, 77, 0.95) 100%);
	border-color: rgba(255, 237, 213, 0.92);
	box-shadow: 0 22px 38px rgba(154, 84, 42, 0.24);
	color: #7c2d12;
}

.acs-card__rank--standard {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 243, 0.98) 32%, rgba(251, 113, 133, 0.92) 100%);
	border-color: rgba(255, 228, 230, 0.92);
	box-shadow: 0 20px 36px rgba(225, 29, 72, 0.2);
	color: #9f1239;
}

.acs-card__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
}

.acs-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.acs-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff1f2;
	color: #9f1239;
	font-size: 0.8125rem;
	font-weight: 600;
}

.acs-card__title {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--acs-text);
}

.acs-card__summary {
	margin: 0;
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.8;
}

.acs-card__footer {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: auto;
}

.acs-card__price {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--acs-primary);
}

.acs-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.acs-card__actions .acs-button {
	flex: 1 1 180px;
	min-width: 0;
}

.acs-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 36px 20px;
	border: 1px dashed #d1d5db;
	border-radius: calc(var(--acs-radius) + 8px);
	background: #f9fafb;
	text-align: center;
}

.acs-empty-state--inline {
	grid-column: 1 / -1;
}

.acs-empty-state__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--acs-text);
}

.acs-empty-state__copy {
	margin: 0;
	color: #6b7280;
	line-height: 1.7;
}

.acs-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.acs-pagination__button {
	min-width: 44px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #fecdd3;
	border-radius: calc(var(--acs-radius) + 2px);
	background: #fff7f7;
	color: #9f1239;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.acs-pagination__button:hover {
	border-color: #fda4af;
}

.acs-pagination__button.is-active {
	background: linear-gradient(90deg, var(--acs-primary), var(--acs-accent));
	border-color: transparent;
	color: #ffffff;
}

.acs-carousel {
	overflow: hidden;
}

.acs-carousel__viewport {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	overflow-x: clip;
}

.acs-carousel__track {
	display: flex;
	width: 100%;
	transition: transform 0.28s ease;
	will-change: transform;
}

.acs-carousel__slide {
	flex: 0 0 100%;
	min-width: 100%;
	max-width: 100%;
}

.acs-carousel__slide > * {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.acs-carousel__nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}

.acs-detail-modal[hidden],
.acs-ai-modal[hidden] {
	display: none;
}

.acs-detail-modal,
.acs-ai-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(72px, 10vh, 108px) 16px max(24px, env(safe-area-inset-bottom, 0px) + 16px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.acs-detail-modal__backdrop,
.acs-ai-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.64);
}

.acs-detail-modal__dialog,
.acs-ai-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, calc(100vw - 32px));
	max-height: calc(100dvh - clamp(72px, 10vh, 108px) - max(24px, env(safe-area-inset-bottom, 0px) + 16px));
	max-width: 920px;
	margin: 0;
	padding: 24px;
	overflow: auto;
	scrollbar-gutter: stable both-edges;
}

.acs-detail-modal__close,
.acs-ai-modal__close {
	position: sticky;
	top: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	margin-left: auto;
	border: 1px solid #d1d5db;
	border-radius: calc(var(--acs-radius) + 2px);
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	color: #374151;
	cursor: pointer;
}

.acs-detail-panel {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 24px;
}

.acs-detail-panel__media img {
	display: block;
	width: 100%;
	max-height: min(42vh, 420px);
	height: auto;
	border-radius: calc(var(--acs-radius) + 8px);
	object-fit: contain;
	background: #fff7f7;
}

.acs-detail-panel__body h3,
.acs-ai-modal__title {
	margin: 12px 0 10px;
	font-size: 1.6rem;
	line-height: 1.3;
	color: var(--acs-text);
}

.acs-detail-panel__copy {
	margin: 0;
	color: #6b7280;
	line-height: 1.8;
}

.acs-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.acs-detail-grid div,
.acs-plan-list li {
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: calc(var(--acs-radius) + 4px);
	background: #f9fafb;
}

.acs-detail-grid strong,
.acs-plan-list strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.acs-detail-grid span,
.acs-plan-list span {
	color: var(--acs-text);
	line-height: 1.6;
}

.acs-detail-section {
	margin-top: 18px;
}

.acs-detail-section h4 {
	margin: 0 0 12px;
	font-size: 1rem;
	color: var(--acs-text);
}

.acs-plan-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.acs-plan-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.acs-detail-panel__actions {
	margin-top: 18px;
}

.acs-eyebrow {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9ca3af;
}

.acs-ai-modal__textarea {
	min-height: 160px;
	margin-top: 14px;
	resize: vertical;
}

.acs-ai-modal__actions {
	margin-top: 14px;
}

.acs-ai-modal__answer {
	margin-top: 18px;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: calc(var(--acs-radius) + 6px);
	background: #f9fafb;
	color: var(--acs-text);
	line-height: 1.9;
	white-space: pre-wrap;
}

.acs-ai-modal__answer-link {
	margin: 16px 0 0;
}

.acs-ai-modal__answer-link a {
	color: var(--acs-primary);
	font-weight: 700;
	text-decoration: none;
}

.acs-shell[data-acs-product-search] {
	max-width: 1248px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
	color: #1f2937;
}

.acs-shell--feed[data-acs-feed-display] {
	max-width: 1248px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
	color: #1f2937;
}

.acs-shell--feed[data-acs-feed-display] .acs-results-shell--feed {
	margin-top: 18px;
	padding: 8px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.acs-shell--feed[data-acs-feed-display] .acs-results-head {
	margin-bottom: 18px;
	padding: 0 4px;
}

.acs-shell--feed[data-acs-feed-display] .acs-results-head__eyebrow {
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #fb7185;
	text-transform: none;
}

.acs-shell--feed[data-acs-feed-display] .acs-results-head__heading {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #111827;
}

.acs-shell--feed[data-acs-feed-display] .acs-results-head__icon {
	color: #bf0000;
}

.acs-shell--feed[data-acs-feed-display] .acs-card-grid,
.acs-shell--feed[data-acs-feed-display] .acs-card-stack {
	gap: 20px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card {
	background: rgba(255, 255, 255, 0.98);
	border-color: #fecdd3;
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.acs-shell--feed[data-acs-feed-display] .acs-card:hover {
	box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}

.acs-shell--feed[data-acs-feed-display] .acs-card__media {
	background: linear-gradient(180deg, #fff5f5 0%, #ffe4e6 100%);
}

.acs-shell--feed[data-acs-feed-display] .acs-card--rakuten_market .acs-card__media {
	aspect-ratio: 16 / 11;
	min-height: 0;
	background: #ffffff;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--rakuten_market .acs-card__image {
	object-fit: contain;
	object-position: center center;
	padding: 18px;
	background: #ffffff;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--rakuten_travel .acs-card__media,
.acs-shell--feed[data-acs-feed-display] .acs-card--rakuten_gora .acs-card__media {
	aspect-ratio: 16 / 10;
	min-height: 0;
}

.acs-shell--feed[data-acs-feed-display] .acs-card__meta span {
	background: #fff1f2;
	color: #9f1239;
}

.acs-shell--feed[data-acs-feed-display] .acs-card__title {
	color: #111827;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.acs-shell--feed[data-acs-feed-display] .acs-card__summary {
	color: #4b5563;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--list .acs-card__summary,
.acs-shell--feed[data-acs-feed-display] .acs-card--ranking .acs-card__summary,
.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__summary {
	-webkit-line-clamp: 3;
}

.acs-shell--feed[data-acs-feed-display] .acs-card__actions .acs-button {
	flex: 1 1 150px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card-stack--list,
.acs-shell--feed[data-acs-feed-display] .acs-card-stack--ranking {
	gap: 22px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--list,
.acs-shell--feed[data-acs-feed-display] .acs-card--ranking {
	grid-template-columns: minmax(300px, 34%) minmax(0, 1fr);
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight {
	grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.acs-shell--feed[data-acs-feed-display] .acs-card--list .acs-card__body,
.acs-shell--feed[data-acs-feed-display] .acs-card--ranking .acs-card__body {
	padding: 24px;
	gap: 18px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__body {
	padding: clamp(24px, 3vw, 34px);
	gap: 20px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--list .acs-card__media,
.acs-shell--feed[data-acs-feed-display] .acs-card--ranking .acs-card__media,
.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__media {
	min-height: 0;
	aspect-ratio: 16 / 11;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__media {
	aspect-ratio: 16 / 10;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--list .acs-card__title,
.acs-shell--feed[data-acs-feed-display] .acs-card--ranking .acs-card__title {
	font-size: 1.25rem;
	line-height: 1.45;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__title {
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	line-height: 1.28;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__price {
	font-size: clamp(2rem, 3vw, 2.7rem);
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__summary {
	-webkit-line-clamp: 4;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__actions .acs-button {
	flex: 0 1 auto;
	min-width: 190px;
}

.acs-shell--feed[data-acs-feed-display] .acs-card--ranking .acs-card__rank {
	transform: translate3d(0, 0, 0);
}

.acs-shell--feed[data-acs-feed-display] .acs-empty-state {
	border-color: #fecdd3;
	background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
	box-shadow: 0 16px 30px rgba(244, 63, 94, 0.08);
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel {
	overflow: visible;
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel__viewport {
	overflow: hidden;
	overflow-x: clip;
	border-radius: calc(var(--acs-radius) + 12px);
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel__track {
	align-items: stretch;
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel__slide {
	padding: 4px 0;
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel__nav {
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.acs-shell--feed[data-acs-feed-display] .acs-carousel__nav .acs-pagination__button {
	min-width: 140px;
	min-height: 48px;
	border-radius: 16px;
	box-shadow: 0 10px 20px rgba(244, 63, 94, 0.08);
}

.acs-shell--feed[data-acs-feed-display] .acs-pagination__button {
	background: #fff7f7;
	border-color: #fecdd3;
	color: #9f1239;
}

.acs-shell--feed[data-acs-feed-display] .acs-pagination__button.is-active,
.acs-shell--feed[data-acs-feed-display] .acs-pagination__button:hover {
	border-color: transparent;
}

.acs-shell--feed[data-acs-feed-display] .acs-pagination__button.is-active {
	background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
	color: #ffffff;
}

.acs-shell--feed[data-acs-feed-display] .acs-creditline {
	display: flex;
	justify-content: flex-end;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #f3f4f6;
	color: #9ca3af;
	font-weight: 500;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-results-head,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-results-head {
	margin-bottom: 14px;
	padding: 0;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-results-head__heading,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-results-head__heading {
	font-size: clamp(1.5rem, 7vw, 2.25rem);
	line-height: 1.15;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card-grid,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card-stack,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card-grid,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card-stack {
	grid-template-columns: 1fr;
	gap: 16px;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--list,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--ranking,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--highlight,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--list,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--ranking,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--highlight {
	grid-template-columns: 1fr;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--list .acs-card__media,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--ranking .acs-card__media,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--highlight .acs-card__media,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--list .acs-card__media,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--ranking .acs-card__media,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--highlight .acs-card__media {
	aspect-ratio: 4 / 3;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--highlight .acs-card__body,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--highlight .acs-card__body {
	padding: 20px;
	gap: 16px;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card--highlight .acs-card__title,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card--highlight .acs-card__title {
	font-size: 1.35rem;
	line-height: 1.35;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card__body,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__body {
	padding: 18px;
	gap: 14px;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card__actions,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__actions {
	flex-direction: column;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-card__actions .acs-button,
.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-carousel__nav .acs-pagination__button,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__actions .acs-button,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-carousel__nav .acs-pagination__button {
	width: 100%;
	min-width: 0;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-carousel__nav,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-carousel__nav {
	flex-direction: column;
	align-items: stretch;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="compact"] .acs-creditline,
.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-creditline {
	justify-content: flex-start;
	margin-top: 16px;
	padding-top: 14px;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-results-shell--feed {
	padding-top: 0;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__title {
	font-size: 1rem;
	line-height: 1.5;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__summary {
	font-size: 0.9rem;
	line-height: 1.7;
}

.acs-shell--feed[data-acs-feed-display][data-acs-width="narrow"] .acs-card__price {
	font-size: 1.5rem;
}

.acs-shell[data-acs-product-search] .acs-product-widget {
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
	overflow: hidden;
}

.acs-shell[data-acs-product-search] .acs-product-widget__header,
.acs-shell[data-acs-product-search] .acs-product-widget__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: #f9fafb;
	border-bottom: 1px solid #f3f4f6;
}

.acs-shell[data-acs-product-search] .acs-product-widget__footer {
	border-top: 1px solid #f3f4f6;
	border-bottom: 0;
	font-size: 12px;
}

.acs-shell[data-acs-product-search] .acs-product-widget__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #1f2937;
}

.acs-shell[data-acs-product-search] .acs-product-widget__tabs {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 4px;
	background: #e5e7eb;
	border-radius: 12px;
}

.acs-shell[data-acs-product-search] .acs-widget__tab {
	min-width: 144px;
	min-height: 44px;
	padding: 10px 24px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #6b7280;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.2s ease;
}

.acs-shell[data-acs-product-search] .acs-widget__tab:hover {
	color: #374151;
	background: rgba(255, 255, 255, 0.5);
}

.acs-shell[data-acs-product-search] .acs-widget__tab.tab-active,
.acs-shell[data-acs-product-search] .acs-widget__tab.is-active {
	background: #ffffff;
	color: #bf0000;
	font-weight: 700;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acs-shell[data-acs-product-search] .acs-widget__tab.tab-inactive {
	color: #6b7280;
	font-weight: 500;
}

.acs-shell[data-acs-product-search] .acs-product-widget__body {
	padding: 24px;
}

.acs-shell[data-acs-product-search] .acs-search-form,
.acs-shell[data-acs-product-search] .acs-search-form * {
	box-sizing: border-box;
}

.acs-shell[data-acs-product-search] .acs-search-form {
	margin: 0;
}

.acs-shell[data-acs-product-search] .acs-search-row--product {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.acs-shell[data-acs-product-search] .acs-search-field--product {
	position: relative;
	flex: 1 1 520px;
}

.acs-shell[data-acs-product-search] .acs-search-field__icon {
	position: absolute;
	inset: 0 auto 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	color: #9ca3af;
	pointer-events: none;
}

.acs-shell[data-acs-product-search] .acs-search-input,
.acs-shell[data-acs-product-search] .acs-select {
	width: 100%;
	min-height: 56px;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 16px;
	background: #ffffff;
	color: #1f2937;
	font-size: 1rem;
	line-height: 1.5;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.acs-shell[data-acs-product-search] .acs-search-input {
	padding: 14px 18px 14px 52px;
	background: #f9fafb;
	font-size: 1.125rem;
}

.acs-shell[data-acs-product-search] .acs-search-input::placeholder {
	color: #9ca3af;
}

.acs-shell[data-acs-product-search] .acs-search-input:focus,
.acs-shell[data-acs-product-search] .acs-select:focus {
	outline: none;
	border-color: transparent;
	background: #ffffff;
	box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.24);
}

.acs-shell[data-acs-product-search] .acs-select {
	padding: 14px 44px 14px 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
}

.acs-shell[data-acs-product-search] input.acs-select[type="date"] {
	padding-right: 16px;
	background-image: none;
}

.acs-shell[data-acs-product-search] .acs-button--submit {
	flex: 0 0 auto;
	min-width: 190px;
	min-height: 56px;
	padding: 14px 32px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 700;
	box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
}

.acs-shell[data-acs-product-search] .acs-button--submit:hover {
	background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
	box-shadow: 0 16px 30px rgba(220, 38, 38, 0.26);
	transform: translateY(-2px);
}

.acs-shell[data-acs-product-search] .acs-button--submit:disabled,
.acs-shell[data-acs-product-search] .acs-button--submit.is-loading {
	transform: none;
	opacity: 0.85;
}

.acs-shell[data-acs-product-search] .acs-filter-panel[hidden] {
	display: none !important;
}

.acs-shell[data-acs-product-search] .acs-filter-grid {
	display: grid;
	gap: 16px;
}

.acs-shell[data-acs-product-search] .acs-filter-grid--market {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.acs-shell[data-acs-product-search] .acs-filter-grid--travel {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.acs-shell[data-acs-product-search] .acs-filter-grid--golf {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.acs-shell[data-acs-product-search] .acs-field-inline {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.acs-shell[data-acs-product-search] .acs-field-inline span {
	display: block;
	margin: 0;
	padding-left: 4px;
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 600;
}

.acs-shell[data-acs-product-search] .acs-inline-status {
	min-height: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
	color: #9ca3af;
	font-weight: 500;
}

.acs-shell[data-acs-product-search] .acs-inline-status:empty {
	display: none;
}

.acs-shell[data-acs-product-search] .acs-inline-status[data-state="info"] {
	color: #6b7280;
}

.acs-shell[data-acs-product-search] .acs-inline-status[data-state="error"] {
	color: #dc2626;
	font-weight: 600;
}

.acs-shell[data-acs-product-search] .acs-flag-grid--golf {
	margin-top: 16px;
}

.acs-shell[data-acs-product-search] .acs-flag-grid--golf .acs-flag-chip {
	border-color: #fecdd3;
	background: #fff7f7;
	color: #9f1239;
	box-shadow: 0 8px 18px rgba(244, 63, 94, 0.08);
}

.acs-shell[data-acs-product-search] .acs-flag-grid--golf .acs-flag-chip:has(input:checked) {
	border-color: transparent;
	background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(220, 38, 38, 0.2);
}

.acs-shell[data-acs-product-search] .acs-creditline {
	margin-left: auto;
	color: #9ca3af;
	font-weight: 500;
}

.acs-shell[data-acs-product-search] .acs-creditline a {
	color: inherit;
	text-decoration: none;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product {
	margin-top: 18px;
	padding: 8px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-results-head {
	margin-bottom: 18px;
	padding: 0 4px;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-results-head__eyebrow {
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #fb7185;
	text-transform: none;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-results-head__heading {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #111827;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-results-head__icon {
	color: #bf0000;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card-grid {
	gap: 20px;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card {
	background: rgba(255, 255, 255, 0.98);
	border-color: #fecdd3;
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card:hover {
	box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card__media {
	background: linear-gradient(180deg, #fff5f5 0%, #ffe4e6 100%);
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--rakuten_market .acs-card__media {
	aspect-ratio: 16 / 11;
	min-height: 0;
	background: #ffffff;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--rakuten_travel .acs-card__media,
.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--rakuten_gora .acs-card__media {
	aspect-ratio: 16 / 10;
	min-height: 0;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--rakuten_market .acs-card__image {
	object-fit: contain;
	object-position: center center;
	padding: 18px;
	background: #ffffff;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--detail .acs-card__actions .acs-button {
	flex: 1 1 150px;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card__meta span {
	background: #fff1f2;
	color: #9f1239;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card__title {
	color: #111827;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card__summary {
	color: #4b5563;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-pagination__button {
	background: #fff7f7;
	border-color: #fecdd3;
	color: #9f1239;
}

.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-pagination__button.is-active {
	background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
	border-color: transparent;
	color: #ffffff;
}

.acs-shell[data-acs-product-search] .fade-enter {
	opacity: 0;
	transform: translateY(-10px);
}

.acs-shell[data-acs-product-search] .fade-enter-active {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 300ms ease, transform 300ms ease;
}

@media (max-width: 1180px) {
	.acs-filter-grid,
	.acs-filter-grid--golf,
	.acs-card-grid {
		grid-template-columns: repeat(var(--acs-grid-tablet), minmax(0, 1fr));
	}

	.acs-card--list,
	.acs-card--ranking,
	.acs-card--highlight,
	.acs-detail-panel {
		grid-template-columns: 1fr;
	}

	.acs-card__media {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 782px) {
	.acs-widget__header,
	.acs-widget__footer,
	.acs-search-row,
	.acs-results-head {
		flex-direction: column;
		align-items: stretch;
	}

	.acs-widget__body,
	.acs-results-shell,
	.acs-detail-modal__dialog,
	.acs-ai-modal__dialog {
		padding: 18px;
	}

	.acs-filter-grid,
	.acs-filter-grid--golf,
	.acs-card-grid,
	.acs-detail-grid {
		grid-template-columns: repeat(var(--acs-grid-mobile), minmax(0, 1fr));
	}

	.acs-widget__tabs {
		width: 100%;
	}

	.acs-widget__tab {
		flex: 1 1 0;
		text-align: center;
		padding-inline: 14px;
	}

	.acs-button--submit,
	.acs-card__actions .acs-button {
		width: 100%;
	}

	.acs-creditline {
		margin-left: 0;
	}

	.acs-plan-list li {
		flex-direction: column;
		align-items: stretch;
	}

	.acs-card__rank {
		right: 12px;
		top: 12px;
		min-width: 68px;
		min-height: 72px;
		padding: 8px 8px 10px;
		border-radius: 20px;
	}

	.acs-card__rank::after {
		inset: 7px;
		border-radius: 14px;
	}

	.acs-card__rank-number {
		font-size: 1.65rem;
	}

	.acs-detail-modal,
	.acs-ai-modal {
		padding: max(68px, env(safe-area-inset-top, 0px) + 40px) 12px max(16px, env(safe-area-inset-bottom, 0px) + 12px);
	}

	.acs-detail-modal__dialog,
	.acs-ai-modal__dialog {
		width: calc(100vw - 24px);
		max-height: calc(100dvh - max(68px, env(safe-area-inset-top, 0px) + 40px) - max(16px, env(safe-area-inset-bottom, 0px) + 12px));
		padding: 18px;
	}

	.acs-detail-modal__close,
	.acs-ai-modal__close {
		width: 100%;
		margin-bottom: 12px;
	}

	.acs-detail-panel__media img {
		max-height: min(34vh, 280px);
	}
}

@media (max-width: 980px) {
	.acs-shell[data-acs-product-search] .acs-filter-grid--travel,
	.acs-shell[data-acs-product-search] .acs-filter-grid--golf {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.acs-shell[data-acs-product-search] .acs-product-widget__header,
	.acs-shell[data-acs-product-search] .acs-product-widget__footer,
	.acs-shell[data-acs-product-search] .acs-search-row--product {
		flex-direction: column;
		align-items: stretch;
	}

	.acs-shell[data-acs-product-search] .acs-search-row--product {
		gap: 12px;
	}

	.acs-shell[data-acs-product-search] .acs-search-field,
	.acs-shell[data-acs-product-search] .acs-search-field--product {
		flex: 0 0 auto;
		width: 100%;
		min-width: 0;
	}

	.acs-shell[data-acs-product-search] .acs-search-field__icon {
		top: 0;
		bottom: 0;
	}

	.acs-shell[data-acs-product-search] .acs-product-widget__body,
	.acs-shell[data-acs-product-search] .acs-results-shell--product {
		padding: 18px;
	}

	.acs-shell[data-acs-product-search] .acs-results-shell--product {
		padding: 8px 0 0;
	}

	.acs-shell[data-acs-product-search] .acs-product-widget__tabs {
		width: 100%;
	}

	.acs-shell[data-acs-product-search] .acs-widget__tab {
		flex: 1 1 0;
		min-width: 0;
		padding-inline: 14px;
	}

	.acs-shell[data-acs-product-search] .acs-filter-grid--market,
	.acs-shell[data-acs-product-search] .acs-filter-grid--travel,
	.acs-shell[data-acs-product-search] .acs-filter-grid--golf {
		grid-template-columns: 1fr;
	}

	.acs-shell[data-acs-product-search] .acs-button--submit {
		width: 100%;
	}

	.acs-shell[data-acs-product-search] .acs-creditline {
		margin-left: 0;
	}

	.acs-shell[data-acs-product-search] .acs-results-shell--product .acs-card--rakuten_market .acs-card__media {
		aspect-ratio: 4 / 3;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-results-shell--feed {
		padding: 8px 0 0;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-results-head {
		padding: 0;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-card--rakuten_market .acs-card__media {
		aspect-ratio: 4 / 3;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-card__actions .acs-button,
	.acs-shell--feed[data-acs-feed-display] .acs-carousel__nav .acs-pagination__button {
		width: 100%;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-carousel__nav {
		flex-direction: column;
		align-items: stretch;
	}

	.acs-shell--feed[data-acs-feed-display] .acs-card--highlight .acs-card__title {
		font-size: 1.45rem;
	}
}
