body.rososhop-page-about .main-page-wrapper,
body.rososhop-page-about .site-content,
body.rososhop-page-about .content-area,
body.rososhop-page-about .entry-content {
	background: #fff;
}

body.rososhop-page-about .page-title {
	display: none !important;
}

.rb-about {
	--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-about__container {
	width: min(860px, calc(100% - 32px));
	margin-inline: auto;
}

/* Hero */
.rb-about__hero {
	position: relative;
	overflow: hidden;
	padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
	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-about__hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rb-about__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.35;
}

.rb-about__orb--1 {
	width: 280px;
	height: 280px;
	top: -80px;
	right: 10%;
	background: var(--rb-brand-glow);
	animation: rb-orb-float-a 8s ease-in-out infinite;
}

.rb-about__orb--2 {
	width: 200px;
	height: 200px;
	bottom: 0;
	left: 5%;
	background: rgba(255, 182, 193, 0.35);
	animation: rb-orb-float-b 10s ease-in-out infinite;
}

.rb-about__orb--3 {
	width: 120px;
	height: 120px;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--rb-brand-soft);
	animation: rb-orb-pulse 6s ease-in-out infinite;
}

.rb-about__hero-inner {
	position: relative;
	z-index: 1;
}

.rb-about__hero-logo {
	display: inline-block;
	margin-bottom: 20px;
	line-height: 0;
	transition: transform 0.25s ease;
}

.rb-about__hero-logo:hover {
	transform: scale(1.04);
}

.rb-about__hero-logo img {
	display: block;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--rb-brand);
	box-shadow: 0 12px 32px var(--rb-brand-glow);
}

.rb-about--ready .rb-about__hero-logo.is-visible img {
	animation: rb-logo-glow 4s ease-in-out infinite;
}

.rb-about__kicker {
	margin: 0 0 12px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rb-brand);
}

.rb-about__title {
	margin: 0 0 20px;
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	font-weight: 800;
	line-height: 1.45;
	color: var(--rb-ink);
}

.rb-about__lead {
	margin: 0 auto 28px;
	max-width: 640px;
	font-size: clamp(0.95rem, 2.2vw, 1.05rem);
	line-height: 2;
	color: var(--rb-muted);
}

.rb-about__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.rb-about__chip {
	display: inline-flex;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--rb-brand);
	background: var(--rb-surface);
	border: 1px solid var(--rb-line);
	box-shadow: 0 4px 16px rgba(214, 6, 68, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rb-about__chip:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(214, 6, 68, 0.12);
}

/* Animations */
.rb-animate {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--rb-delay, 0ms);
}

.rb-animate--hero.is-visible,
.rb-about--ready .rb-animate--hero {
	opacity: 1;
	transform: translateY(0);
}

.rb-about--ready .rb-about__chip {
	opacity: 0;
	transform: translateY(12px) scale(0.95);
	animation: rb-chip-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(380ms + (var(--rb-i, 0) * 90ms));
}

.rb-about__section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rb-about__cta.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rb-about__section.is-visible .rb-about__icon {
	animation: rb-icon-pop 0.6s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.rb-about__section.is-visible .rb-about__quote {
	animation: rb-quote-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.rb-about__brands li.rb-animate--chip {
	opacity: 0;
	transform: scale(0.85);
	transition:
		opacity 0.45s ease,
		transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
	transition-delay: calc(var(--rb-i, 0) * 70ms);
}

.rb-about__section.is-visible .rb-about__brands li.rb-animate--chip {
	opacity: 1;
	transform: scale(1);
}

.rb-about__cta-item {
	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-about__cta.is-visible .rb-about__cta-item {
	opacity: 1;
	transform: translateY(0);
}

.rb-about__cta-btn {
	position: relative;
	overflow: hidden;
}

.rb-about__cta-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
	transform: translateX(-120%);
	animation: rb-btn-shine 3s ease-in-out infinite;
}

@keyframes rb-orb-float-a {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(16px, 12px); }
}

@keyframes rb-orb-float-b {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-12px, -8px); }
}

@keyframes rb-orb-pulse {
	0%, 100% { opacity: 0.25; transform: translateX(-50%) scale(1); }
	50% { opacity: 0.45; transform: translateX(-50%) scale(1.12); }
}

@keyframes rb-logo-glow {
	0%, 100% { box-shadow: 0 12px 32px var(--rb-brand-glow); }
	50% { box-shadow: 0 16px 40px rgba(214, 6, 68, 0.32); }
}

@keyframes rb-chip-in {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes rb-icon-pop {
	from {
		opacity: 0;
		transform: scale(0.6) rotate(-8deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

@keyframes rb-quote-in {
	from {
		opacity: 0;
		transform: scale(0.96);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes rb-btn-shine {
	0%, 40% { transform: translateX(-120%); }
	60%, 100% { transform: translateX(120%); }
}

/* Sections */
.rb-about__body {
	padding: clamp(32px, 5vw, 56px) 0;
}

.rb-about__section {
	margin-bottom: clamp(28px, 4vw, 40px);
	padding: clamp(24px, 4vw, 36px);
	border-radius: 20px;
	background: var(--rb-surface);
	border: 1px solid var(--rb-line);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rb-about__section:hover {
	box-shadow: 0 16px 48px rgba(214, 6, 68, 0.08);
}

.rb-about__section--alt {
	background: var(--rb-surface-alt);
}

.rb-about__section-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--rb-line);
}

.rb-about__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	color: var(--rb-brand);
	background: var(--rb-brand-soft);
}

.rb-about__icon-svg {
	display: block;
}

.rb-about__section-title {
	margin: 0;
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 800;
	line-height: 1.4;
	color: var(--rb-ink);
}

.rb-about__section-content p {
	margin: 0 0 16px;
	font-size: 0.98rem;
	line-height: 2;
	color: var(--rb-muted);
}

.rb-about__section-content p:last-child {
	margin-bottom: 0;
}

.rb-about__highlight {
	padding: 16px 20px !important;
	margin: 20px 0 !important;
	border-radius: 12px;
	font-weight: 600 !important;
	color: var(--rb-ink) !important;
	background: linear-gradient(135deg, var(--rb-brand-soft), rgba(255, 255, 255, 0.9));
	border-inline-start: 4px solid var(--rb-brand);
}

.rb-about__quote {
	margin: 24px 0;
	padding: 20px 24px;
	border: none;
	border-radius: 16px;
	text-align: center;
	background: var(--rb-brand);
	box-shadow: 0 12px 36px var(--rb-brand-glow);
}

.rb-about__quote p {
	margin: 0;
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	font-weight: 700;
	line-height: 1.7;
	color: #fff;
}

.rb-about__closing {
	font-weight: 500;
}

.rb-about__brands {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.rb-about__brands li {
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rb-brand);
	background: #fff;
	border: 1px solid var(--rb-line);
}

/* CTA */
.rb-about__cta {
	padding: clamp(48px, 7vw, 72px) 0;
	text-align: center;
	background:
		radial-gradient(ellipse 70% 80% at 50% 100%, var(--rb-brand-soft), transparent 65%),
		linear-gradient(180deg, var(--rb-surface-alt) 0%, #fff 100%);
}

.rb-about__cta-inner {
	padding: clamp(32px, 5vw, 48px);
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--rb-line);
	box-shadow: 0 20px 60px rgba(214, 6, 68, 0.1);
}

.rb-about__cta-title {
	margin: 0 0 12px;
	font-size: clamp(1.25rem, 3vw, 1.6rem);
	font-weight: 800;
	color: var(--rb-ink);
}

.rb-about__cta-text {
	margin: 0 0 28px;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--rb-muted);
}

.rb-about__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, var(--rb-brand) 0%, #b00538 100%);
	box-shadow: 0 10px 28px var(--rb-brand-glow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rb-about__cta-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 36px var(--rb-brand-glow);
}

@media (max-width: 767px) {
	.rb-about__section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.rb-about__brands {
		justify-content: center;
	}

	.rb-about__brands li {
		font-size: 0.8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rb-animate,
	.rb-about__chip,
	.rb-about__brands li,
	.rb-about__cta-item {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}

	.rb-about__hero-logo,
	.rb-about__section,
	.rb-about__cta-btn {
		transition: none;
	}

	.rb-about__orb,
	.rb-about__hero-logo img,
	.rb-about__cta-btn::after {
		animation: none !important;
	}
}
