body.rososhop-page-faq .main-page-wrapper,
body.rososhop-page-faq .site-content,
body.rososhop-page-faq .content-area,
body.rososhop-page-faq .entry-content {
	background: #fff;
}

body.rososhop-page-faq .page-title {
	display: none !important;
}

.rb-faq {
	--rb-brand: #d60644;
	--rb-brand-soft: rgba(214, 6, 68, 0.08);
	--rb-brand-glow: rgba(214, 6, 68, 0.18);
	--rb-ink: #1a1a1a;
	--rb-muted: #5c5c5c;
	--rb-line: rgba(214, 6, 68, 0.12);
	--rb-surface: #fff;
	--rb-surface-alt: #fff8fa;

	color: var(--rb-ink);
	background: var(--rb-surface);
}

.rb-faq__container {
	width: min(820px, calc(100% - 32px));
	margin-inline: auto;
}

.rb-faq__hero {
	position: relative;
	overflow: hidden;
	padding: clamp(44px, 7vw, 68px) 0 clamp(32px, 5vw, 48px);
	text-align: center;
	background:
		radial-gradient(ellipse 80% 60% at 50% -10%, var(--rb-brand-soft), transparent 70%),
		linear-gradient(180deg, #fff 0%, var(--rb-surface-alt) 100%);
}

.rb-faq__hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rb-faq__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.35;
}

.rb-faq__orb--1 {
	width: 240px;
	height: 240px;
	top: -60px;
	right: 10%;
	background: var(--rb-brand-glow);
	animation: rb-faq-orb-a 8s ease-in-out infinite;
}

.rb-faq__orb--2 {
	width: 160px;
	height: 160px;
	bottom: 0;
	left: 8%;
	background: rgba(255, 182, 193, 0.35);
	animation: rb-faq-orb-b 10s ease-in-out infinite;
}

.rb-faq__hero-inner {
	position: relative;
	z-index: 1;
}

.rb-faq__hero-logo {
	display: inline-block;
	margin-bottom: 14px;
	line-height: 0;
}

.rb-faq__hero-logo img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--rb-brand);
	box-shadow: 0 10px 28px var(--rb-brand-glow);
}

.rb-faq__kicker {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--rb-brand);
}

.rb-faq__title {
	margin: 0 0 8px;
	font-size: clamp(1.4rem, 4vw, 1.9rem);
	font-weight: 800;
	line-height: 1.4;
}

.rb-faq__subtitle {
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--rb-brand);
}

.rb-faq__lead {
	margin: 0 auto;
	max-width: 640px;
	font-size: 0.95rem;
	line-height: 2;
	color: var(--rb-muted);
}

.rb-animate {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--rb-delay, 0ms);
}

.rb-animate--hero.is-visible,
.rb-faq--ready .rb-animate--hero,
.rb-faq__item.is-visible,
.rb-faq__cta.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rb-faq__body {
	padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 6vw, 64px);
}

.rb-faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: clamp(28px, 4vw, 36px);
}

.rb-faq__item {
	border: 1px solid var(--rb-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rb-faq__item[open] {
	border-color: rgba(214, 6, 68, 0.35);
	box-shadow: 0 10px 28px var(--rb-brand-glow);
}

.rb-faq__question {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	line-height: 1.5;
	color: var(--rb-ink);
	transition: color 0.15s ease;
}

.rb-faq__question::-webkit-details-marker {
	display: none;
}

.rb-faq__question:hover {
	color: var(--rb-brand);
}

.rb-faq__num {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 800;
	color: #fff;
	background: var(--rb-brand);
}

.rb-faq__question-text {
	flex: 1;
	font-size: clamp(0.9rem, 2.2vw, 0.98rem);
	text-align: start;
}

.rb-faq__chevron {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border-inline-end: 2px solid var(--rb-brand);
	border-bottom: 2px solid var(--rb-brand);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.rb-faq__item[open] .rb-faq__chevron {
	transform: rotate(-135deg);
}

.rb-faq__answer {
	padding: 0 18px 18px 60px;
	font-size: 0.92rem;
	line-height: 1.9;
	color: var(--rb-muted);
}

.rb-faq__answer p {
	margin: 0 0 12px;
}

.rb-faq__answer p:last-child {
	margin-bottom: 0;
}

.rb-faq__list {
	margin: 8px 0 0;
	padding: 0 18px 0 0;
	list-style: none;
}

.rb-faq__list li {
	position: relative;
	margin-bottom: 8px;
	padding-inline-start: 14px;
}

.rb-faq__list li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.65em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--rb-brand);
	opacity: 0.7;
}

.rb-faq__cta {
	padding: clamp(24px, 4vw, 32px);
	border-radius: 20px;
	text-align: center;
	background: linear-gradient(135deg, var(--rb-brand-soft), #fff);
	border: 1px solid var(--rb-line);
}

.rb-faq__cta-title {
	margin: 0 0 12px;
	font-size: clamp(1.05rem, 2.5vw, 1.25rem);
	font-weight: 800;
	color: var(--rb-ink);
}

.rb-faq__cta-text {
	margin: 0 0 20px;
	font-size: 0.92rem;
	line-height: 1.85;
	color: var(--rb-muted);
}

.rb-faq__cta-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.rb-faq__cta-btn {
	display: inline-flex;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background: var(--rb-brand);
	box-shadow: 0 8px 22px var(--rb-brand-glow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rb-faq__cta-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px var(--rb-brand-glow);
}

@keyframes rb-faq-orb-a {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(12px, 8px); }
}

@keyframes rb-faq-orb-b {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-8px, -5px); }
}

@media (max-width: 767px) {
	.rb-faq__answer {
		padding-inline: 18px 18px;
		padding-inline-start: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rb-animate {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.rb-faq__orb {
		animation: none !important;
	}
}
