body.rososhop-custom-footer .footer-container,
body.rososhop-custom-footer .wd-prefooter {
	display: none !important;
}

.rososhop-footer {
	--rb-brand: #d60644;
	--rb-brand-soft: rgba(214, 6, 68, 0.12);
	--rb-bg: #141414;
	--rb-text: #f2f2f2;
	--rb-muted: #a8a8a8;
	--rb-line: rgba(255, 255, 255, 0.1);

	margin: 0;
	color: var(--rb-text);
	background: var(--rb-bg);
	border-top: 3px solid var(--rb-brand);
}

.rososhop-footer__wrap {
	width: min(1180px, calc(100% - 24px));
	margin-inline: auto;
	padding: 22px 0 16px;
}

.rososhop-footer__head {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--rb-line);
}

.rososhop-footer__logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.rososhop-footer__logo-img {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--rb-brand);
	box-shadow: 0 6px 20px rgba(214, 6, 68, 0.25);
}

.rososhop-footer__logo-text {
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.rososhop-footer__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rososhop-footer__tagline {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--rb-muted);
	white-space: nowrap;
}

.rososhop-footer__meta-line {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	align-items: center;
	font-size: 0.82rem;
	color: var(--rb-muted);
}

.rososhop-footer__meta-line a {
	color: var(--rb-text);
	text-decoration: none;
	transition: color 0.15s ease;
}

.rososhop-footer__meta-line a:hover {
	color: var(--rb-brand);
}

.rososhop-footer__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--rb-brand);
	opacity: 0.7;
}

.rososhop-footer__cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px 18px;
}

.rososhop-footer__col {
	min-width: 0;
}

.rososhop-footer__heading {
	margin: 0 0 8px;
	padding-inline-start: 10px;
	border-inline-start: 3px solid var(--rb-brand);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.rososhop-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rososhop-footer__menu li + li {
	margin-top: 3px;
}

.rososhop-footer__menu a {
	display: inline-block;
	padding: 2px 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--rb-muted);
	text-decoration: none;
	transition: color 0.15s ease, padding-inline-start 0.15s ease;
}

.rososhop-footer__menu a:hover {
	color: #fff;
	padding-inline-start: 4px;
}

.rososhop-footer__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--rb-line);
}

.rososhop-footer__trust-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: #fff;
}

.rososhop-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.rososhop-footer__badge {
	display: inline-flex;
	padding: 4px 6px;
	border-radius: 8px;
	background: #fff;
	line-height: 0;
	transition: transform 0.15s ease;
}

.rososhop-footer__badge:hover {
	transform: translateY(-2px);
}

.rososhop-footer__badge img {
	display: block;
	width: auto;
	max-height: 72px;
	height: auto;
}

@media (max-width: 900px) {
	.rososhop-footer__wrap {
		width: calc(100% - 20px);
	}

	.rososhop-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 14px;
	}

	.rososhop-footer__col {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.rososhop-footer__wrap {
		padding: 18px 0 14px;
	}

	.rososhop-footer__head {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 12px;
	}

	.rososhop-footer__brand {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.rososhop-footer__tagline {
		margin-top: 6px;
		font-size: 0.78rem;
		white-space: normal;
		text-align: center;
	}

	.rososhop-footer__meta-line {
		justify-content: center;
		width: 100%;
	}

	.rososhop-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 12px;
	}

	.rososhop-footer__col {
		padding: 12px 10px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid var(--rb-line);
	}

	.rososhop-footer__heading {
		margin-bottom: 10px;
		padding-inline-start: 0;
		padding-bottom: 8px;
		border-inline-start: 0;
		border-bottom: 2px solid var(--rb-brand);
		font-size: 0.84rem;
		text-align: center;
	}

	.rososhop-footer__menu a {
		display: block;
		width: 100%;
		padding: 4px 0;
		font-size: 0.78rem;
		text-align: center;
	}

	.rososhop-footer__menu a:hover {
		padding-inline-start: 0;
	}

	.rososhop-footer__trust {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		text-align: center;
	}

	.rososhop-footer__badges {
		justify-content: center;
		width: 100%;
	}
}
