
:root {
	/* cores */
    --primary: #0d0d0d;
    --primary-hover: #1a1a1a;
    --primary-active: #050505;
	--tertiary: #ffcc00;
	--tertiary-hover: #e6b800;
	--tertiary-active: #cca300;
	/* cores */

	/* fundo / texto */
	--background: var(--primary);
	--background-secondary: #141414;
	--text: #f2f2f2;
	--text-black: #ffffff;
	--text-secondary: #b8b8b8;
	--text-gray: #9a9a9a;
	--coupons-available-bg: #1a1a1a;
	/* fundo / texto */

	/* header */
	--header-topbar-background-color: #000000;
	--header-topbar-text-color: #d9d9d9;
	--header-topbar-icon-color: var(--tertiary);
	--header-background-color: var(--primary);
	--header-border-color: #262626;
	--header-color-text: #fafafa;
	--header-svg-color: var(--tertiary);
	--header-search-background-color: #ffffff;
	--header-search-background-color-focus: #f2f2f2;
	--header-search-color: #55524d;
	--header-menu-background: var(--primary);
	--header-menu-color-text: #fafafa;
	--header-menu-color-text-hover: var(--tertiary);
	--header-menu-font-size: 12px;
	--header-svg-width: 20px;
	--header-svg-height: 20px;
	/* header */

	/* footer */
	--footer-background-color: #000000;
	--footer-border-color: #262626;
	--footer-color-text: #d9d9d9;
	--footer-color-text-secondary: #9a9a9a;
	/* footer */

	/* fontes */
    --font-primary: 'Poppins', sans-serif;
	/* fontes */

	/* botões */
    --btn-product-thumb: var(--tertiary);
    --btn-product-thumb-hover: var(--tertiary-hover);
    --btn-product-thumb-active: var(--tertiary-active);
    --btn-product-thumb-color: #000;

	--btn-add-cart: var(--tertiary);
	--btn-add-cart-hover: var(--tertiary-hover);
	--btn-add-cart-active: var(--tertiary-active);
	--btn-add-cart-color: #000;
	/* botões */

	/* geral */
    --container-small: 1530px;
    --container-xxl: 1760px;
    --container-large: 1920px;
    --logo-max-height: 64px;
	@media (max-width: 991px) {
		--header-svg-width: 22px;
		--header-svg-height: 22px;

		--spacing-sections-home: 36px;
		--footer-space: 24px;
		--logo-max-height: 40px;
	}
	/* geral */
}

body {background-color: var(--background);}

/* Topo  */
.top-bar {background: #000000; border-bottom: 1px solid #262626;}
.top-bar-items {justify-content: center; gap: 40px;}
.top-bar, .top-bar a {color: #d9d9d9;}
.top-bar i {color: var(--tertiary);}

.header-wrapper {gap: 30px; padding: 20px 0;}

.header-wrapper .search {border: 1px solid #e0e0e0; background: var(--header-search-background-color);}
.header-wrapper .search svg {fill: var(--tertiary);}

#cart-top svg, #cart-top svg use, #cart-top svg path {fill: #ffffff !important; color: #ffffff !important;}
#cart-top .cart-qtd {color: #55524d;}

.header-info {font-size: var(--header-menu-font-size); color: #d9d9d9;}

.header-bottom {background: #000000; border-top: 1px solid #1f1f1f;}
.menu-smart-list.menu-smart-level-1 {justify-content: center; gap: 20px;}

.menu-smart-all-trigger {background-color: var(--tertiary); border-radius: 6px; border: none;}
.menu-smart-all-trigger:hover {background-color: var(--tertiary-hover);}
.menu-smart-all-trigger, .menu-smart-all-trigger span, .menu-smart-all-trigger i {color: #55524d;}

/* Home  */

/* Carousel categories */
.carousel-categories .swiper-wrapper {justify-content: center; gap: 40px;}
.carousel-categories img {border-radius: 12px; padding: 4px; background: #171717; border: 1px solid #262626; box-shadow: none;}
.carousel-categories img:hover {filter: none; border-color: var(--tertiary);}
.carousel-categories .heading-title {color: #fff;}

.product-thumb {background: #141414; border: 1px solid #262626; border-radius: 10px;}
.product-thumb:hover {border-color: var(--tertiary);}
.product-thumb .product-thumb-title {color: #f5f5f5;}
.product-thumb .product-price-value {color: #ffffff;}
.product-thumb .rating {display: flex;}
.product-thumb .product-price-old-value {color: #ff6b6b;}

.product-list-carousel-bg {background: var(--background-secondary);}
.product-list-carousel-bg .heading-title {color: #fff;}
.product-list-carousel-bg .product-thumb {border-color: #2a2a2a;}

.brand-marquee {overflow: hidden; position: relative; width: 100%; background: var(--background-secondary); padding: 20px 0; cursor: grab; border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f;}
.brand-marquee:active {cursor: grabbing;}
.brand-marquee .marquee-track {display: flex; width: fit-content; animation: scrollBrands 25s linear infinite; will-change: transform;}
.brand-marquee .brand-item {flex: 0 0 auto; display: flex; align-items: center; justify-content: center; margin: 0 40px; transition: transform 0.3s;}
.brand-marquee .brand-item img {filter: grayscale(1) brightness(2.2);}
.brand-marquee .brand-item:hover img {filter: none; opacity: 1; transform: scale(1.05);}
@keyframes scrollBrands {
	from {transform: translateX(0);}
	to {transform: translateX(-50%);}
}

/* Footer  */
.footer-informations img {display: none;}
footer .footer-list {gap: 10px; margin-bottom: 0;}
.list-contact__item.list-contact__item--telephone {display: none;}
.list-contact__item.list-contact__item--geocode {display: none;}
footer .footer-seal__title {margin-bottom: 8px; color: #fff;}
footer a:hover {color: var(--tertiary);}

/* PÁGINA INTERNA */

/* Produto */
.product-price .product-price-value {color: #ffffff;}
.product-price .product-pix-value {color: var(--tertiary);}
.product-price .product-pix-icon svg {fill: var(--tertiary);}
.product-price .product-price-old-value {color: #ff6b6b;}

/* MOBILE */
.offcanvas-footer {background: var(--primary);}
.offcanvas-menu-mobile .social-media i {background: var(--tertiary); color: #000 !important;}
@media (max-width: 991px) {
	.banners-large img {aspect-ratio: 1920 / 480 !important;}
	.product-price .product-pix {width: 100%;}
}
@media (max-width: 1600px) {
	/* Header  */
	#header .container {max-width: var(--container-small);}
	.header-wrapper {gap: 18px;}
}