/* =========================================================
   Movy Esportes — Theme overrides
   Loaded after default stylesheet.css; only overrides
   visual layer, never removes OpenCart blocks.
   ========================================================= */

:root {
	--movy-primary: #FF6B00;
	--movy-primary-dark: #E55B00;
	--movy-primary-light: #FF8A33;
	--movy-dark: #0F0F0F;
	--movy-dark-soft: #1A1A1A;
	--movy-dark-2: #242424;
	--movy-text: #2B2B2B;
	--movy-muted: #6F6F6F;
	--movy-line: #ECECEC;
	--movy-bg: #FAFAFA;
	--movy-white: #FFFFFF;
	--movy-radius: 10px;
	--movy-radius-lg: 18px;
	--movy-shadow: 0 6px 24px rgba(0,0,0,.08);
	--movy-shadow-lg: 0 12px 40px rgba(0,0,0,.12);
	--movy-transition: all .25s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- Base ---------- */
html, body {
	background: var(--movy-white);
}
body {
	font-family: 'Poppins', 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--movy-text);
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	color: var(--movy-dark);
	font-weight: 700;
	letter-spacing: -0.01em;
}
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 17px; }
h5 { font-size: 14px; }
a {
	color: var(--movy-primary);
	transition: var(--movy-transition);
}
a:hover, a:focus {
	color: var(--movy-primary-dark);
	text-decoration: none;
}

/* ---------- Topbar promocional ---------- */
.movy-topbar {
	background: var(--movy-dark);
	color: #fff;
	font-size: 12.5px;
	letter-spacing: .02em;
	padding: 9px 0;
}
.movy-topbar a { color: #fff; }
.movy-topbar a:hover { color: var(--movy-primary-light); }
.movy-topbar .movy-topbar-left,
.movy-topbar .movy-topbar-right {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.movy-topbar .movy-topbar-right { justify-content: flex-end; }
.movy-topbar .fa { color: var(--movy-primary); margin-right: 6px; }

/* ---------- Top OpenCart (currency/language/login) ---------- */
#top {
	background: #fff !important;
	border-bottom: 1px solid var(--movy-line);
	padding: 6px 0 !important;
	margin: 0 !important;
	min-height: 36px !important;
}
#top .container { padding: 0 20px; }
#top-links { padding-top: 4px; }
#top-links li, #top-links a, #top .btn-link {
	color: var(--movy-muted) !important;
	text-shadow: none !important;
	font-size: 12.5px;
}
#top-links a:hover, #top .btn-link:hover {
	color: var(--movy-primary) !important;
}
#top .btn-link strong { font-weight: 600; }
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
	background: var(--movy-primary) !important;
	background-image: none !important;
	color: #fff !important;
	text-shadow: none !important;
}
#top-links .dropdown-menu {
	border: 1px solid var(--movy-line);
	border-radius: var(--movy-radius);
	box-shadow: var(--movy-shadow);
	padding: 6px 0;
}
.dropdown-menu li > a:hover {
	background: var(--movy-primary) !important;
	background-image: none !important;
	color: #fff !important;
}

/* ---------- Header ---------- */
header {
	padding: 22px 0 18px !important;
	border-bottom: 1px solid var(--movy-line);
}
#logo { margin: 0; padding-top: 4px; }
#logo img {
	max-height: 56px;
	width: auto;
	transition: var(--movy-transition);
}

/* ---------- Search ---------- */
#search {
	margin-bottom: 0;
	border-radius: 50px;
	overflow: hidden;
	border: 2px solid var(--movy-line);
	background: var(--movy-bg);
	transition: var(--movy-transition);
}
#search:focus-within {
	border-color: var(--movy-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}
#search .input-lg {
	height: 46px;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-size: 13.5px;
	padding-left: 22px;
}
#search .btn-lg {
	height: 46px;
	background: var(--movy-primary) !important;
	background-image: none !important;
	border: none !important;
	color: #fff !important;
	text-shadow: none !important;
	padding: 0 26px;
	font-size: 16px;
	border-radius: 50px;
	margin: 0;
}
#search .btn-lg:hover { background: var(--movy-primary-dark) !important; }

/* ---------- Cart ---------- */
#cart {
	margin-bottom: 0;
}
#cart > .btn {
	background: var(--movy-dark) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 50px;
	height: 46px;
	font-weight: 600;
	font-size: 13px;
	color: #fff !important;
	text-shadow: none !important;
	padding: 0 22px;
	transition: var(--movy-transition);
}
#cart > .btn:hover { background: var(--movy-primary) !important; }
#cart > .btn .fa { margin-right: 6px; font-size: 15px; }
#cart.open > .btn {
	background: var(--movy-primary) !important;
	color: #fff !important;
	border: none !important;
}
#cart .dropdown-menu {
	background: #fff;
	border: 1px solid var(--movy-line);
	border-radius: var(--movy-radius);
	box-shadow: var(--movy-shadow-lg);
	padding: 12px;
}

/* ---------- Menu de categorias ---------- */
#menu {
	background: var(--movy-dark) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 0 !important;
	min-height: 50px;
	margin-bottom: 0;
}
#menu .nav > li > a {
	color: #fff !important;
	text-shadow: none !important;
	font-weight: 500;
	font-size: 13.5px;
	letter-spacing: .02em;
	padding: 15px 18px !important;
	position: relative;
	transition: var(--movy-transition);
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
	background: transparent !important;
	color: var(--movy-primary) !important;
}
#menu .nav > li > a::after {
	content: '';
	position: absolute;
	left: 18px; right: 18px; bottom: 8px;
	height: 2px;
	background: var(--movy-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
#menu .nav > li > a:hover::after,
#menu .nav > li.open > a::after { transform: scaleX(1); }
#menu .dropdown-menu {
	border: 1px solid var(--movy-line);
	border-radius: var(--movy-radius);
	box-shadow: var(--movy-shadow-lg);
	padding: 14px 0 0;
	margin-top: 0;
}
#menu .dropdown-inner a {
	color: var(--movy-text) !important;
	font-size: 13px;
	padding: 6px 22px !important;
	font-weight: 500;
	transition: var(--movy-transition);
}
#menu .dropdown-inner a:hover {
	color: var(--movy-primary) !important;
	background: transparent !important;
	padding-left: 26px !important;
}
#menu .see-all {
	background: var(--movy-bg);
	color: var(--movy-dark) !important;
	font-weight: 600;
	font-size: 12.5px;
	padding: 12px 22px !important;
	border-top: 1px solid var(--movy-line);
}
#menu .see-all:hover {
	background: var(--movy-primary) !important;
	background-image: none !important;
	color: #fff !important;
}
#menu .btn-navbar {
	background: var(--movy-primary) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 6px;
}
#menu #category {
	color: #fff;
	text-shadow: none;
	font-weight: 600;
	font-size: 14px;
}

/* ---------- Hero ---------- */
.movy-hero {
	position: relative;
	border-radius: var(--movy-radius-lg);
	overflow: hidden;
	margin: 28px 0 32px;
	background: var(--movy-dark);
	box-shadow: var(--movy-shadow-lg);
	min-height: 360px;
	display: flex;
	align-items: stretch;
}
.movy-hero img.movy-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.movy-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15,15,15,.85) 0%, rgba(15,15,15,.55) 45%, rgba(15,15,15,0) 70%);
	z-index: 1;
}
.movy-hero-content {
	position: relative;
	z-index: 2;
	padding: 64px 56px;
	max-width: 620px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.movy-hero-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--movy-primary);
	margin-bottom: 14px;
}
.movy-hero h1 {
	color: #fff;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 18px;
}
.movy-hero p {
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 26px;
	color: #DADADA;
	max-width: 480px;
}
.movy-hero .movy-btn { align-self: flex-start; }

/* ---------- Botões ---------- */
.movy-btn,
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--movy-primary) !important;
	background-image: none !important;
	border: none !important;
	color: #fff !important;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: .02em;
	padding: 13px 28px;
	border-radius: 50px;
	text-shadow: none !important;
	box-shadow: 0 8px 20px rgba(255,107,0,.28);
	transition: var(--movy-transition);
	cursor: pointer;
}
.movy-btn:hover,
.btn-primary:hover {
	background: var(--movy-primary-dark) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(255,107,0,.35);
}
.movy-btn-ghost {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid #fff !important;
	box-shadow: none;
}
.movy-btn-ghost:hover {
	background: #fff !important;
	color: var(--movy-dark) !important;
}
.btn-default, .btn-info, .btn-inverse {
	border-radius: 50px;
}

/* ---------- Faixa de benefícios ---------- */
.movy-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 0 0 36px;
}
.movy-benefit {
	background: #fff;
	border: 1px solid var(--movy-line);
	border-radius: var(--movy-radius);
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: var(--movy-transition);
}
.movy-benefit:hover {
	transform: translateY(-3px);
	box-shadow: var(--movy-shadow);
	border-color: rgba(255,107,0,.3);
}
.movy-benefit-icon {
	width: 46px; height: 46px;
	display: grid; place-items: center;
	background: rgba(255,107,0,.10);
	border-radius: 50%;
	color: var(--movy-primary);
	font-size: 18px;
	flex-shrink: 0;
}
.movy-benefit-text strong {
	display: block;
	font-size: 13.5px;
	color: var(--movy-dark);
	font-weight: 700;
	margin-bottom: 2px;
}
.movy-benefit-text span {
	font-size: 12px;
	color: var(--movy-muted);
	line-height: 1.35;
	display: block;
}

/* ---------- Section heading ---------- */
.movy-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 22px;
	gap: 16px;
	flex-wrap: wrap;
}
.movy-section-heading h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
}
.movy-section-heading .movy-eyebrow {
	display: block;
	font-size: 12px;
	color: var(--movy-primary);
	font-weight: 700;
	letter-spacing: .25em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.movy-section-heading a {
	font-size: 13px;
	font-weight: 600;
	color: var(--movy-dark);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.movy-section-heading a:hover { color: var(--movy-primary); }
.movy-section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

/* ---------- Banner secundário ---------- */
.movy-promo {
	position: relative;
	border-radius: var(--movy-radius-lg);
	overflow: hidden;
	margin: 36px 0;
	min-height: 220px;
	display: flex;
	align-items: center;
	box-shadow: var(--movy-shadow);
	background: var(--movy-dark);
}
.movy-promo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .75;
}
.movy-promo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15,15,15,.7), rgba(15,15,15,.2));
}
.movy-promo-content {
	position: relative;
	z-index: 2;
	padding: 36px 48px;
	color: #fff;
}
.movy-promo h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px;
	line-height: 1.15;
	max-width: 460px;
}
.movy-promo p {
	color: #E0E0E0;
	margin: 0 0 18px;
	max-width: 380px;
}

/* ---------- Newsletter ---------- */
.movy-newsletter {
	margin: 48px 0 12px;
	padding: 44px 48px;
	background: #262b2f;
	border-radius: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	box-shadow: none;
}
.movy-newsletter h3 {
	color: #fff;
	font-size: 24px;
	margin: 0 0 6px;
	font-weight: 700;
	text-transform: uppercase;
}
.movy-newsletter p {
	margin: 0;
	color: rgba(255,255,255,.68);
	font-size: 15px;
}
.movy-newsletter form {
	display: flex;
	gap: 10px;
	flex: 1;
	min-width: 320px;
	max-width: 460px;
}
.movy-newsletter input[type="email"] {
	flex: 1;
	height: 50px;
	padding: 0 22px;
	border-radius: 50px;
	border: none;
	font-size: 14px;
	color: var(--movy-dark);
	box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.movy-newsletter button {
	height: 50px;
	padding: 0 28px;
	border-radius: 50px;
	border: none;
	background: var(--movy-dark);
	color: #fff;
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
	transition: var(--movy-transition);
}
.movy-newsletter button:hover { background: #000; }

.movy-newsletter .movy-btn {
	min-width: 330px;
	justify-content: center;
	padding: 18px 34px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	box-shadow: none;
}

.movy-newsletter .movy-btn:hover {
	transform: none;
	box-shadow: none;
}

.movy-newsletter .movy-btn:not(.movy-btn-ghost) {
	background: var(--movy-primary) !important;
	color: #fff !important;
}

.movy-newsletter .movy-btn-ghost {
	background: #fff !important;
	color: #1f2430 !important;
	border: none !important;
}

.movy-newsletter .movy-btn-ghost:hover {
	background: #f2f2f2 !important;
	color: #1f2430 !important;
}

/* ---------- Cards de produto / categoria genéricos ---------- */
.product-thumb,
.product-layout .product-thumb {
	border: 1px solid var(--movy-line) !important;
	border-radius: var(--movy-radius);
	overflow: hidden;
	background: #fff;
	transition: var(--movy-transition);
	margin-bottom: 24px;
}
.product-thumb:hover {
	border-color: rgba(255,107,0,.3) !important;
	transform: translateY(-4px);
	box-shadow: var(--movy-shadow);
}
.product-thumb .image { background: var(--movy-bg); padding: 12px; }
.product-thumb .image img { transition: transform .35s ease; }
.product-thumb:hover .image img { transform: scale(1.04); }
.product-thumb .caption { padding: 16px 18px; }
.product-thumb h4 { font-size: 14.5px; margin: 0 0 8px; font-weight: 600; }
.product-thumb h4 a { color: var(--movy-dark); }
.product-thumb h4 a:hover { color: var(--movy-primary); }
.product-thumb .price {
	color: var(--movy-primary);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
}
.product-thumb .price::before {
	content: "Par: ";
	color: var(--movy-dark);
	font-weight: 600;
}
.product-thumb .price-old {
	color: var(--movy-muted);
	text-decoration: line-through;
	font-size: 13px;
	font-weight: 500;
	margin-right: 6px;
}
.product-thumb .price-new { color: var(--movy-primary); }
.product-thumb .button-group {
	border-top: 1px solid var(--movy-line);
	background: transparent;
	overflow: hidden;
}
.product-thumb .button-group button {
	background: transparent !important;
	background-image: none !important;
	border: none !important;
	color: var(--movy-muted) !important;
	text-shadow: none !important;
	font-size: 12.5px;
	font-weight: 600;
	padding: 12px 8px !important;
	transition: var(--movy-transition);
}
.product-thumb .button-group button:hover {
	color: var(--movy-primary) !important;
	background: var(--movy-bg) !important;
}
.product-thumb .button-group button + button {
	border-left: 1px solid var(--movy-line) !important;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
	background: transparent;
	border: none !important;
	padding: 14px 0 !important;
	margin-bottom: 18px !important;
	font-size: 12.5px;
}
.breadcrumb > li { padding: 0 12px 0 0 !important; text-shadow: none !important; }
.breadcrumb > li:after { display: none !important; }
.breadcrumb > li + li:before {
	content: '/' !important;
	padding: 0 10px 0 0 !important;
	color: var(--movy-muted);
}
.breadcrumb a { color: var(--movy-muted); }
.breadcrumb a:hover { color: var(--movy-primary); }
.breadcrumb > .active { color: var(--movy-dark); font-weight: 600; }

/* ---------- Pagination ---------- */
.pagination > li > a, .pagination > li > span {
	border-radius: 6px !important;
	margin: 0 3px;
	border: 1px solid var(--movy-line) !important;
	color: var(--movy-text);
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > li > a:hover {
	background: var(--movy-primary) !important;
	border-color: var(--movy-primary) !important;
	color: #fff !important;
}

/* ---------- Footer ---------- */
body > footer {
	margin-top: 56px !important;
	padding-top: 56px !important;
	background: var(--movy-dark) !important;
	border-top: none !important;
	color: #BDBDBD !important;
}
body > footer .container { max-width: 1170px; }
body > footer h5 {
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	margin-bottom: 18px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
body > footer ul { padding: 0; }
body > footer ul li { margin-bottom: 8px; list-style: none; }
body > footer a {
	color: #BDBDBD !important;
	font-size: 13px;
	transition: var(--movy-transition);
}
body > footer a:hover {
	color: var(--movy-primary) !important;
	padding-left: 4px;
}
body > footer hr {
	border-top: 1px solid rgba(255,255,255,.08) !important;
	border-bottom: none !important;
	margin: 32px 0 22px;
}
body > footer p { font-size: 12.5px; color: #888; margin: 0; }

.movy-footer-brand img {
	max-height: 50px;
	margin-bottom: 16px;
	filter: brightness(1.05);
}
.movy-footer-about {
	font-size: 13px;
	line-height: 1.7;
	color: #B0B0B0;
	margin-bottom: 18px;
}
.movy-footer-simple {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}
.movy-footer-contact-copy {
	font-size: 16px !important;
	line-height: 1.8;
	color: #d0d0d0 !important;
	margin-bottom: 14px !important;
}
.movy-footer-contact-copy a {
	color: #fff !important;
	font-size: inherit;
	font-weight: 700;
}
.movy-footer-contact-copy a:hover {
	color: var(--movy-primary) !important;
}
.movy-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #BDBDBD;
}
.movy-footer-contact .fa {
	color: var(--movy-primary);
	font-size: 14px;
	margin-top: 4px;
	flex-shrink: 0;
}
.movy-social {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}
.movy-social a {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: rgba(255,255,255,.06);
	color: #fff !important;
	border-radius: 50%;
	font-size: 15px;
	transition: var(--movy-transition);
}
.movy-social a:hover {
	background: var(--movy-primary);
	color: #fff !important;
	transform: translateY(-3px);
	padding-left: 0;
}
.movy-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.movy-payments span {
	background: rgba(255,255,255,.07);
	color: #DADADA;
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.movy-footer-bottom {
	background: #000;
	margin-top: 22px;
	padding: 16px 0;
	font-size: 12px;
	color: #888;
}
.movy-footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

/* ---------- Forms genéricos ---------- */
.form-control {
	border-radius: 8px;
	border-color: var(--movy-line);
	height: 40px;
	padding: 8px 14px;
	box-shadow: none;
	transition: var(--movy-transition);
}
.form-control:focus {
	border-color: var(--movy-primary);
	box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}

/* ---------- Alerts ---------- */
.alert { border-radius: 8px; border: none; }
.alert-success { background: #E8F7EE; color: #1F7A3A; }
.alert-danger { background: #FDE8E8; color: #B41E1E; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.movy-hero-content { padding: 44px 36px; }
	.movy-hero h1 { font-size: 34px; }
	.movy-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	header { padding: 16px 0 !important; }
	#logo { text-align: center; margin-bottom: 14px; }
	#search, #cart { margin-bottom: 12px; }
	.movy-topbar .movy-topbar-right { display: none; }
	.movy-hero { min-height: 280px; }
	.movy-hero::after {
		background: linear-gradient(180deg, rgba(15,15,15,.4) 0%, rgba(15,15,15,.85) 70%);
	}
	.movy-hero-content { padding: 32px 24px; max-width: 100%; }
	.movy-hero h1 { font-size: 26px; }
	.movy-hero p { font-size: 14px; }
	.movy-benefits { grid-template-columns: 1fr; }
	.movy-promo-content { padding: 24px; }
	.movy-promo h3 { font-size: 22px; }
	.movy-newsletter { padding: 28px 22px; flex-direction: column; align-items: stretch; text-align: center; }
	.movy-newsletter form { flex-direction: column; min-width: 100%; }
	.movy-newsletter input[type="email"], .movy-newsletter button { width: 100%; }
	#menu .nav > li > a::after { display: none; }
	.movy-footer-bottom .container { flex-direction: column; text-align: center; }
	.movy-footer-simple { gap: 24px; }
}

/* =========================================================
   Seções da home — adicionadas para alinhar com siteecommerce
   ========================================================= */

/* Botões extras */
.movy-btn.movy-btn-outline {
    background: transparent;
    color: var(--movy-dark);
    border: 2px solid var(--movy-dark);
    padding: 9px 20px;
}
.movy-btn.movy-btn-outline:hover {
    background: var(--movy-dark);
    color: var(--movy-white);
}
.movy-btn.movy-btn-dark {
    background: var(--movy-dark);
    color: var(--movy-white);
    border: 2px solid var(--movy-dark);
}
.movy-btn.movy-btn-dark:hover {
    background: var(--movy-primary);
    border-color: var(--movy-primary);
}

/* Seções de produtos (Linha esportiva / casual) */
.movy-products-section {
    margin: 50px 0;
}
.movy-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-bottom: 1px solid var(--movy-line);
    padding-bottom: 16px;
    margin-bottom: 28px;
}
.movy-products-header h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--movy-dark);
    margin: 0;
    font-weight: 700;
}
.movy-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 991px) {
    .movy-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .movy-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .movy-products-header h2 { font-size: 1.15rem; }
}
.movy-product-card {
    background: var(--movy-white);
    border: 1px solid var(--movy-line);
    border-radius: var(--movy-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
    position: relative;
}
.movy-product-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.movy-product-img {
    overflow: hidden;
    background: var(--movy-bg);
    aspect-ratio: 1 / 1;
}
.movy-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.movy-product-card:hover .movy-product-img img {
    transform: scale(1.04);
}
.movy-product-body {
    padding: 14px 16px 6px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}
.movy-product-body h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
    flex: 1;
}
.movy-product-body h3 a {
    color: var(--movy-dark);
    text-decoration: none;
}
.movy-product-body h3 a:hover { color: var(--movy-primary); }
.movy-product-price {
    color: var(--movy-primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.movy-product-cta {
    display: block;
    text-align: center;
    background: var(--movy-dark);
    color: var(--movy-white);
    padding: 11px 14px;
    margin: 12px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background .2s ease;
}
.movy-product-cta:hover {
    background: var(--movy-primary);
    color: var(--movy-white);
    text-decoration: none;
}

/* Banner Yearly Sale (Compressão certa para ir mais longe) */
.movy-yearly-sale {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #EDF1F3;
    background-size: auto 100%;
    background-position: 80% center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 9.5em;
    padding-bottom: 9.5em;
}
.movy-yearly-sale-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.movy-yearly-sale-content {
    margin-left: 33.33%;
    max-width: 420px;
}
.movy-yearly-sale-content h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--movy-text);
    margin-bottom: 8px;
    text-transform: none;
}
.movy-yearly-sale-content h2 {
    font-size: 4.5rem;
    font-weight: 300;
    text-transform: uppercase !important;
    color: var(--movy-dark);
    line-height: 1.2;
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}
.movy-yearly-sale-content p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.movy-btn-sale {
    display: inline-block;
    background: var(--movy-dark);
    color: #fff;
    border: 1px solid var(--movy-dark);
    border-radius: 0;
    padding: 0.8em 2.8em;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.movy-btn-sale:hover {
    background: transparent;
    color: var(--movy-dark);
    text-decoration: none;
}
@media (max-width: 991px) {
    .movy-yearly-sale { padding-top: 6em; padding-bottom: 6em; background-size: auto 90%; }
    .movy-yearly-sale-content { margin-left: 10%; }
    .movy-yearly-sale-content h2 { font-size: 3rem; }
}
@media (max-width: 767px) {
    .movy-yearly-sale { padding-top: 4em; padding-bottom: 22em; background-size: 80% auto; background-position: center bottom; }
    .movy-yearly-sale-content { margin-left: 0; }
    .movy-yearly-sale-content h2 { font-size: 2.2rem; }
}

/* Depoimentos */
.movy-testimonials {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
	margin-top: 40px;
	margin-bottom: 40px;
    background: #1a2340;
    overflow: hidden;
	padding: 22px 80px;
}
.movy-testimonials-track {
    position: relative;
    overflow: hidden;
}
.movy-testimonials-slide {
    display: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
	position: relative;
	padding-top: 0;
}
.movy-testimonials-slide.active {
    display: block;
}
.movy-testimonials-quote {
	display: block;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 10rem;
	line-height: 0.8;
	color: #fff;
	margin-bottom: -30px;
}
.movy-testimonials blockquote {
    border: none;
    padding: 0;
    margin: 0;
	font-size: 2.25rem;
    font-style: normal;
    color: #fff;
}
.movy-testimonials blockquote p {
    margin-bottom: 20px;
	line-height: 1.45;
    color: #fff;
}
.movy-testimonials-stars {
    color: var(--movy-primary);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.movy-testimonials blockquote footer {
	display: block;
	background: transparent !important;
	border: 0;
	padding: 0 !important;
	margin-top: 10px;
    color: #fff;
	font-size: 1.6rem;
    text-transform: uppercase;
	letter-spacing: 1px;
    font-style: normal;
    font-weight: 700;
	box-shadow: none !important;
}
.movy-testimonials blockquote footer::before {
	content: none;
}
.movy-testimonials blockquote footer strong {
	color: #fff;
	font-weight: 700;
}
.movy-testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.movy-testimonials-arrow:hover { opacity: 1; }
.movy-testimonials-prev { left: 0; }
.movy-testimonials-next { right: 0; }
@media (max-width: 767px) {
	.movy-testimonials { padding: 22px 28px; }
    .movy-testimonials blockquote { font-size: 1.05rem; }
	.movy-testimonials blockquote footer { font-size: 1rem; }
}

/* Newsletter actions (botões inline para Subscribe) */
.movy-newsletter-actions {
    display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-end;
	margin-left: auto;
}
@media (max-width: 767px) {
	.movy-newsletter-actions {
		align-items: stretch;
		margin-top: 14px;
		margin-left: 0;
	}
}

/* Instagram */
.movy-instagram {
    margin: 60px 0 40px;
}
.movy-instagram .movy-section-heading {
    border: none;
    margin-bottom: 28px;
}
.movy-instagram-sub {
    color: var(--movy-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}
.movy-instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
@media (max-width: 991px) { .movy-instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .movy-instagram-grid { grid-template-columns: repeat(2, 1fr); } }
.movy-instagram-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--movy-radius);
    aspect-ratio: 1 / 1;
}
.movy-instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.movy-instagram-grid a:hover img { transform: scale(1.06); }
.movy-instagram-grid a span {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity .25s ease;
}
.movy-instagram-grid a:hover span { opacity: 1; }

/* =========================================================
   v2 — Header limpo + Hero full-bleed + Cards escuros
   Reflete a primeira dobra aprovada pelo cliente
   ========================================================= */

/* Esconder topbar antiga + nav#top + header default antigo se ainda existirem */
.movy-topbar, nav#top, body > header:not(.movy-header) { display: none !important; }

/* Esconder o slideshow padrão do OpenCart (banners do demo OC) */
.swiper-viewport.slideshow,
#slideshow0,
.swiper-pagination.slideshow0,
div.slideshow,
.carousel.swiper-viewport,
#carousel0,
.swiper-pagination.carousel0 { display: none !important; }

/* Esconder utilitários OpenCart (busca/cart dropdowns) — preservados no DOM */
.movy-oc-utilities {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}
.movy-oc-utilities.show-search {
    position: fixed;
    left: 0; right: 0; top: 70px;
    visibility: visible;
    background: #fff;
    padding: 14px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    z-index: 999;
}
.movy-oc-utilities.show-search .movy-oc-cart { display: none; }

/* Esconder menu OpenCart de categorias na home (visível em outras páginas se quiser) */
body.common-home .movy-oc-categories { display: none; }
.movy-oc-categories nav#menu { display: none; } /* sempre escondido por enquanto */

/* === Header novo === */
.movy-header {
    background: #fff;
    border-bottom: 1px solid var(--movy-line);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}
.movy-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 78px;
}
.movy-header-logo a { display: inline-block; }
.movy-header-logo img {
    max-height: 56px;
    width: auto;
    display: block;
}
.movy-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.movy-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.movy-nav ul li a {
    color: var(--movy-dark);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}
.movy-nav ul li a:hover,
.movy-nav ul li.active a {
    color: var(--movy-primary);
}
.movy-nav ul li.active a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    background: var(--movy-primary);
    border-radius: 2px;
}
.movy-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.movy-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--movy-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background .2s;
}
.movy-icon-btn:hover {
    background: var(--movy-bg);
    color: var(--movy-primary);
}
.movy-wpp-btn {
    background: var(--movy-primary);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .2s;
    margin-left: 6px;
}
.movy-wpp-btn:hover {
    background: var(--movy-primary-dark);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}
.movy-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--movy-dark);
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 991px) {
    .movy-burger { display: inline-block; }
    .movy-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--movy-line);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .movy-nav.open { display: flex; }
    .movy-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .movy-nav ul li {
        border-bottom: 1px solid var(--movy-line);
    }
    .movy-nav ul li a {
        display: block;
        padding: 16px 24px;
    }
    .movy-nav ul li.active a::after { display: none; }
    .movy-wpp-btn span { display: none; }
    .movy-wpp-btn { padding: 10px 14px; }
}
@media (max-width: 575px) {
    .movy-header-inner { gap: 8px; min-height: 64px; }
    .movy-header-logo img { max-height: 42px; }
    .movy-icon-btn { width: 34px; height: 34px; }
}

/* === Hero full-bleed (carrossel BS3) === */
.movy-hero-full {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}
.movy-hero-full .carousel,
.movy-hero-full .carousel-inner,
.movy-hero-full .item {
    width: 100%;
}
.movy-hero-full picture,
.movy-hero-full picture img,
.movy-hero-full .item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Setas (chevrons) — sutis, brancas, sem fundo escuro padrão BS3 */
.movy-hero-full .movy-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--movy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-shadow: none;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background .2s, color .2s;
    background-image: none;
    width: 48px !important;
    background-color: rgba(255,255,255,0.85) !important;
}
.movy-hero-full .movy-hero-arrow-prev { left: 24px; }
.movy-hero-full .movy-hero-arrow-next { right: 24px; }
.movy-hero-full .movy-hero-arrow:hover {
    background-color: var(--movy-primary) !important;
    color: #fff;
}

/* Indicators */
.movy-hero-full .movy-hero-indicators {
    bottom: 18px;
    margin: 0;
    left: 0;
    right: 0;
}
.movy-hero-full .movy-hero-indicators li {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: background .2s;
}
.movy-hero-full .movy-hero-indicators li.active {
    background: var(--movy-primary);
    width: 30px;
    height: 4px;
    margin: 0 4px;
}

@media (max-width: 991px) {
    .movy-hero-full .movy-hero-arrow {
        width: 38px !important;
        height: 38px;
        font-size: 1rem;
    }
    .movy-hero-full .movy-hero-arrow-prev { left: 12px; }
    .movy-hero-full .movy-hero-arrow-next { right: 12px; }
}
@media (max-width: 575px) {
    .movy-hero-full .movy-hero-arrow { display: none; }
}

/* === Benefits dark cards (sobreposição na base do hero) === */
.movy-benefits-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 50px 0;
    position: relative;
    z-index: 5;
}
.movy-benefit-card {
    background: #0F1F36; /* azul-marinho profundo */
    color: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.movy-benefit-card .movy-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--movy-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 4px;
}
.movy-benefit-card h3 {
    color: var(--movy-primary);
    font-size: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 10px;
    line-height: 1.15;
}
.movy-benefit-card p {
    color: #d8dde5;
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .movy-benefits-dark { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
}
@media (max-width: 575px) {
    .movy-benefits-dark { grid-template-columns: 1fr; margin-top: 30px; }
}

/* === Botão WhatsApp flutuante === */
.movy-wpp-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 9000;
    text-decoration: none;
    transition: transform .2s;
}
.movy-wpp-floating:hover {
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}

/* CTA pill — Falar com um especialista */
.movy-cta-wrap {
    display: flex;
    justify-content: center;
    margin: 18px 0 50px;
}
.movy-cta-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 56px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF6B00 0%, #FF3D7F 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.35), 0 0 0 6px rgba(255, 107, 0, 0.08);
    transition: transform .2s, box-shadow .2s;
}
.movy-cta-pill:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 107, 0, 0.45), 0 0 0 8px rgba(255, 107, 0, 0.12);
}
.movy-cta-pill i { font-size: 2.1rem; }
@media (max-width: 575px) {
    .movy-cta-pill { padding: 16px 30px; font-size: 1.2rem; }
    .movy-cta-pill i { font-size: 1.4rem; }
}

/* Esconder "Sem impostos: R$..." em todos os listings e na página do produto */
.price-tax { display: none !important; }

/* Esconder botão "Comparar" em todos os listings e na página do produto */
.product-thumb .button-group button[onclick*="compare.add"],
#product .form-group button[onclick*="compare.add"],
#button-compare { display: none !important; }

/* ===== Movy Carousel (produtos) ===== */
.movy-carousel {
	position: relative;
	padding: 0 56px;
}
.movy-carousel-viewport {
	overflow: hidden;
	width: 100%;
}
.movy-carousel-track {
	display: flex;
	flex-wrap: nowrap;
	transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
	will-change: transform;
}
.movy-carousel-slide {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 12px;
	box-sizing: border-box;
}
.movy-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: var(--movy-dark);
	box-shadow: 0 6px 18px rgba(15, 31, 54, 0.14);
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.movy-carousel-arrow:hover {
	background: var(--movy-primary);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}
.movy-carousel-prev { left: 0; }
.movy-carousel-next { right: 0; }
.movy-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}
.movy-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #d8dde5;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, width 0.2s;
}
.movy-carousel-dot.is-active {
	background: var(--movy-primary);
	width: 26px;
	border-radius: 5px;
}
@media (max-width: 767px) {
	.movy-carousel { padding: 0 38px; }
	.movy-carousel-arrow { width: 36px; height: 36px; font-size: 14px; }
}

/* ===== Movy Marquee (carrossel infinito) ===== */
.movy-marquee {
	overflow: hidden;
	width: 100%;
	position: relative;
	padding: 0 42px;
	mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.movy-marquee-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.96);
	color: #1f2430;
	box-shadow: 0 10px 24px rgba(0,0,0,.14);
	z-index: 3;
	font-size: 28px;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: var(--movy-transition);
}
.movy-marquee-arrow:hover {
	background: var(--movy-primary);
	color: #fff;
}
.movy-marquee-prev {
	left: 0;
}
.movy-marquee-next {
	right: 0;
}
.movy-marquee-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
}
.movy-marquee-slide {
	flex: 0 0 auto;
	width: 280px;
	padding: 6px 12px;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.movy-marquee-slide { width: 300px; }
}
@media (min-width: 1200px) {
	.movy-marquee-slide { width: 320px; }
}
@media (max-width: 767px) {
	.movy-marquee {
		padding: 0 30px;
		mask-image: none;
		-webkit-mask-image: none;
	}
	.movy-marquee-arrow {
		width: 36px;
		height: 36px;
		font-size: 24px;
	}
	.product-thumb .button-group {
		display: flex;
	}
	.product-thumb .button-group button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: auto !important;
		min-height: 54px;
		padding: 12px 10px !important;
	}
	.product-thumb .button-group button:first-child {
		flex: 1 1 auto;
	}
	.product-thumb .button-group button[onclick*="wishlist"] {
		flex: 0 0 64px;
	}
	.product-thumb .button-group button .hidden-xs.hidden-sm.hidden-md {
		display: inline-block !important;
	}
}

/* =========================================================
   FASE 3/5 — Estilo Movy para páginas internas
   product / category / cart / checkout / account
   ========================================================= */

/* ---------- Heading principal (h1/h2/h3 das páginas) ---------- */
#product-category > h2,
#product-search > h1,
#product-product > h1,
#checkout-cart > h1,
#checkout-checkout > h1,
#account-account > h1,
#account-login > h1,
#account-register > h1,
#information-contact > h1,
#information-information > h1 {
	font-size: 28px;
	font-weight: 800;
	color: var(--movy-dark);
	margin: 18px 0 24px;
	letter-spacing: -0.01em;
}

/* ---------- Página do produto ---------- */
#product-product .thumbnails {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	list-style: none;
}
#product-product .thumbnails > li { list-style: none; }
#product-product .thumbnails a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--movy-line);
	transition: border-color .2s, transform .2s;
}
#product-product .thumbnails a:hover {
	border-color: var(--movy-primary);
	transform: translateY(-2px);
}
#product-product .thumbnails img {
	width: 88px;
	height: 88px;
	object-fit: cover;
}
#product-product .image > a {
	display: block;
	border: 1px solid var(--movy-line);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}
#product-product h1 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 8px;
}
#product-product ul.list-unstyled li {
	padding: 4px 0;
	color: var(--movy-muted);
	font-size: 14px;
}
#product-product ul.list-unstyled li b,
#product-product ul.list-unstyled li strong {
	color: var(--movy-dark);
	font-weight: 700;
}
#product-product h2 {
	font-size: 26px;
	font-weight: 800;
	color: var(--movy-primary);
	margin: 14px 0;
}
#product-product h2.price-old {
	color: var(--movy-muted);
	text-decoration: line-through;
	font-size: 18px;
	font-weight: 600;
}
#product-product h2.price-new {
	color: var(--movy-primary);
}
#product-product .price-tax { display: none !important; }
#product-product #button-cart {
	background: var(--movy-primary);
	border: none;
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 999px;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(255, 107, 0, .25);
	transition: filter .2s, transform .2s;
}
#product-product #button-cart:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}
#product-product .nav-tabs {
	border-bottom: 2px solid var(--movy-line);
	margin-top: 30px;
}
#product-product .nav-tabs > li > a {
	color: var(--movy-muted);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: none;
	padding: 12px 18px;
}
#product-product .nav-tabs > li.active > a,
#product-product .nav-tabs > li.active > a:hover,
#product-product .nav-tabs > li.active > a:focus {
	color: var(--movy-primary);
	background: transparent;
	border: none;
	border-bottom: 3px solid var(--movy-primary);
	margin-bottom: -2px;
}
#product-product .tab-content {
	padding: 22px 4px;
	color: var(--movy-dark);
	line-height: 1.7;
}

/* ---------- Carrinho ---------- */
#checkout-cart {
	padding-bottom: 42px;
}
#checkout-cart .movy-cart-intro {
	max-width: 720px;
	margin: 10px 0 28px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--movy-muted);
}
#checkout-cart .table-responsive {
	border: 1px solid var(--movy-line);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .05);
}
#checkout-cart table {
	margin-bottom: 0;
}
#checkout-cart .movy-cart-table td.text-left a {
	color: var(--movy-dark);
	font-weight: 700;
	font-size: 15px;
}
#checkout-cart .movy-cart-table td.text-left small {
	display: inline-block;
	margin-top: 4px;
	color: var(--movy-muted);
}
#checkout-cart table thead td {
	background: #f7f8fa;
	color: var(--movy-dark);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--movy-line);
}
#checkout-cart table td {
	vertical-align: middle;
	padding: 16px 14px;
}
#checkout-cart .movy-cart-qty {
	max-width: 220px !important;
	display: flex;
	align-items: stretch;
}
#checkout-cart table img {
	border-radius: 10px;
	border: 1px solid var(--movy-line);
}
#checkout-cart .input-group input.form-control {
	border-radius: 8px 0 0 8px;
	border: 1px solid var(--movy-line);
	height: 38px;
}
#checkout-cart .input-group .btn {
	border-radius: 0 8px 8px 0;
}
#checkout-cart .movy-cart-qty .btn + .btn {
	margin-left: 1px;
	border-radius: 0 8px 8px 0;
}
#checkout-cart .movy-cart-assist {
	margin: 28px 0 14px;
}
#checkout-cart .movy-cart-assist h2 {
	font-size: 22px;
	margin-bottom: 8px;
}
#checkout-cart .movy-cart-assist p {
	font-size: 16px;
	color: var(--movy-muted);
}
#checkout-cart .panel,
#checkout-cart .well,
#checkout-cart #accordion .panel {
	border: 1px solid var(--movy-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: none;
}
#checkout-cart .panel-heading {
	background: #f7f8fa;
	border-radius: 14px 14px 0 0;
	font-weight: 700;
	color: var(--movy-dark);
}
#checkout-cart .movy-cart-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-top: 28px;
}
#checkout-cart .movy-cart-summary {
	margin-left: auto;
	float: none;
	padding: 0;
}
#checkout-cart .movy-cart-summary-table {
	border: 1px solid var(--movy-line);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .05);
}
#checkout-cart .movy-cart-summary-table td {
	padding: 18px 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--movy-dark);
}
#checkout-cart .movy-cart-summary-table tr:last-child td {
	font-size: 18px;
	font-weight: 800;
}
#checkout-cart .movy-cart-summary-table tr:last-child td:last-child {
	color: var(--movy-primary);
}
#checkout-cart .movy-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex: 1;
}
#checkout-cart .pull-right .btn-primary,
#checkout-cart a.btn-primary {
	background: var(--movy-primary);
	border: none;
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	padding: 12px 26px;
	border-radius: 999px;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(255, 107, 0, .25);
}
#checkout-cart .pull-right .btn-primary:hover,
#checkout-cart a.btn-primary:hover {
	filter: brightness(1.05);
}
#checkout-cart a.btn-default {
	border: 2px solid var(--movy-line);
	color: var(--movy-dark);
	font-weight: 700;
	border-radius: 999px;
	padding: 10px 22px;
}

/* ---------- Checkout ---------- */
#checkout-checkout #accordion .panel,
#checkout-checkout .panel {
	border: 1px solid var(--movy-line);
	border-radius: 14px;
	box-shadow: none;
	background: #fff;
}
#checkout-checkout .panel-heading {
	background: #f7f8fa;
	border-radius: 14px 14px 0 0;
}
#checkout-checkout .panel-title a {
	color: var(--movy-dark);
	font-weight: 800;
	font-size: 15px;
	text-decoration: none;
}
#checkout-checkout .panel-title a i {
	color: var(--movy-primary);
	margin-right: 8px;
}
#checkout-checkout .form-control {
	border-radius: 8px;
	border: 1px solid var(--movy-line);
	height: 42px;
	padding: 8px 14px;
}
#checkout-checkout .form-control:focus {
	border-color: var(--movy-primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 0, .12);
}
#checkout-checkout .btn-primary,
#checkout-checkout input[type="button"].btn-primary {
	background: var(--movy-primary);
	border: none;
	color: #fff;
	font-weight: 800;
	padding: 12px 26px;
	border-radius: 999px;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(255, 107, 0, .25);
}

/* ---------- Account / Login / Register ---------- */
#account-login .well,
#account-register .well,
#account-account .well,
#account-forgotten .well {
	background: #fff;
	border: 1px solid var(--movy-line);
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(15, 31, 54, .04);
	padding: 26px;
}
#account-login h2,
#account-register h2 {
	font-size: 18px;
	font-weight: 800;
	color: var(--movy-dark);
	margin-top: 0;
	margin-bottom: 16px;
}
#account-login .form-control,
#account-register .form-control {
	border-radius: 8px;
	border: 1px solid var(--movy-line);
	height: 42px;
	padding: 8px 14px;
}
#account-login .form-control:focus,
#account-register .form-control:focus {
	border-color: var(--movy-primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 0, .12);
}
#account-login .btn-primary,
#account-register .btn-primary,
#account-account a.list-group-item:hover {
	background: var(--movy-primary);
	border: none;
	color: #fff;
	font-weight: 800;
	padding: 12px 26px;
	border-radius: 999px;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(255, 107, 0, .25);
}
#account-account .list-group-item {
	border-color: var(--movy-line);
	padding: 14px 18px;
	color: var(--movy-dark);
	font-weight: 600;
}
#account-account .list-group-item:hover {
	background: #f7f8fa;
	color: var(--movy-primary);
	border-radius: 0;
	padding: 14px 18px;
	box-shadow: none;
}

/* ---------- Sidebar (column-left) Account ---------- */
.list-group .list-group-item {
	border-radius: 0 !important;
}
.list-group .list-group-item:first-child {
	border-top-left-radius: 14px !important;
	border-top-right-radius: 14px !important;
}
.list-group .list-group-item:last-child {
	border-bottom-left-radius: 14px !important;
	border-bottom-right-radius: 14px !important;
}
.list-group .list-group-item.active,
.list-group .list-group-item.active:hover {
	background: var(--movy-primary);
	border-color: var(--movy-primary);
	color: #fff;
}

/* ---------- Botão "Comprar" / wishlist nos cards (uniforme) ---------- */
.product-thumb .button-group button[onclick*="wishlist"] {
	color: var(--movy-muted);
}
.product-thumb .button-group button[onclick*="wishlist"]:hover {
	color: var(--movy-primary);
}

/* =========================================================
   FASE 6 — Responsividade final + limpeza
   ========================================================= */
@media (max-width: 991px) {
	#product-product h1 { font-size: 22px; }
	#product-product h2 { font-size: 22px; }
	#checkout-cart .movy-cart-footer {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	#checkout-cart .movy-cart-summary {
		width: 100%;
		max-width: none;
	}
	#checkout-cart .movy-cart-actions {
		width: 100%;
	}
	#checkout-cart table thead { display: none; }
	#checkout-cart table tbody td {
		display: block;
		text-align: right;
		border: none;
		padding: 10px 14px;
		position: relative;
		padding-left: 46%;
	}
	#checkout-cart table tbody td::before {
		content: attr(data-title);
		position: absolute;
		left: 14px;
		top: 10px;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: var(--movy-muted);
	}
	#checkout-cart table tbody td:first-child {
		text-align: center;
		padding-top: 16px;
		padding-left: 14px;
	}
	#checkout-cart table tbody td:first-child::before {
		display: none;
	}
	#checkout-cart table tbody tr {
		display: block;
		border-bottom: 1px solid var(--movy-line);
		padding: 6px 0 12px;
	}
	#checkout-cart table tbody tr:last-child {
		border-bottom: none;
	}
}
@media (max-width: 767px) {
	#product-category > h2,
	#product-search > h1,
	#product-product > h1,
	#checkout-cart > h1 { font-size: 22px; }
	#checkout-cart .movy-cart-intro {
		font-size: 15px;
		margin-bottom: 22px;
	}
	#checkout-cart .movy-cart-actions {
		flex-direction: column-reverse;
	}
	#checkout-cart .movy-cart-actions .pull-left,
	#checkout-cart .movy-cart-actions .pull-right {
		width: 100%;
		float: none !important;
	}
	#checkout-cart .movy-cart-actions .btn {
		width: 100%;
		text-align: center;
	}
	#checkout-cart table tbody td {
		padding-left: 14px;
		text-align: left;
	}
	#checkout-cart table tbody td::before {
		display: block;
		position: static;
		margin-bottom: 6px;
	}
}

/* Esconder elementos OC restantes que não usamos */
.product-thumb .button-group button[onclick*="compare"] { display: none !important; }
#compare-total { display: none !important; }
