/*
======================================================
📦 TEMPLATE INFO TRK - CSS ORGANISÉ
======================================================
*/

/*
======================================================
🔤 FONTS
======================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');


/*
======================================================
🌍 BASE (BODY / TEXT)
======================================================
*/
body {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

a {
	text-decoration: none;
	color: #e30000;
}

a:hover {
	color: #e30000;
}


/*
======================================================
🎨 COULEURS & UTILITAIRES
======================================================
*/
.bg-light {
	background-color: #f5f5f7 !important;
}

.bg-primary {
	background-color: #e30000 !important;
}

.text-primary {
	color: #e30000 !important;
}

.text-muted {
	color: #6e6e73 !important;
}


/*
======================================================
🔘 BOUTONS
======================================================
*/
.btn-light {
	background: #f5f5f7;
	border-color: #ebebeb;
	color: #000;
}

.btn-light:hover,
.btn-light:focus {
	background: #6e6e73;
	border-color: #6e6e73;
	color: #fff;
}

.btn-lg {
	padding: 13px 30px;
	font-size: 16px;
	font-weight: 500;
}

.btn-white {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #000000;
}

.btn-white:hover {
	background-color: #e30000;
	border-color: #e30000;
	color: #ffffff;
}

.btn-primary {
	background-color: #e30000 !important;
	border-color: #e30000 !important;
}

.btn-primary:hover {
	background-color: #e30000 !important;
	border-color: #e30000 !important;
}


/*
======================================================
📏 SPACING & HELPERS
======================================================
*/
.mt-n15 { margin-top: -15rem; }
.mt-n10 { margin-top: -10rem; }
.mt-n5  { margin-top: -5rem; }

.p-4\.5 { padding: 2rem !important; }

.w-15 { width: 15%; }

.bg-glass {
	background: rgba(65, 65, 65, 0.25);
	backdrop-filter: blur(4px);
}

.icon {
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*
======================================================
🧭 NAVBAR
======================================================
*/
.gadgets-nav a.nav-link {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
	color: #ffffff !important;
}

.gadgets-nav .navbar-nav .nav-item .nav-link {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.4px;
}

.home-decor-nav .navbar-nav .nav-link {
	font-size: 13px;
	font-weight: 500;
}


/*
======================================================
📱 SIDEBAR
======================================================
*/
.sidebar-nav .navbar-nav .nav-link.active,
.sidebar-nav .navbar-nav .nav-link:hover {
	color: #e30000;
}


/*
/*
======================================================
🚀 HERO / CAROUSEL (FIX PROPRE)
======================================================
*/

/* NE PLUS TOUCHER carousel-item directement */
#heroCarousel .carousel-item {
    min-height: 65vh;
}

/* FLEX déplacé ici */
#heroCarousel .carousel-content {
    display: flex;
    align-items: center;
    height: 100%;
}

/* CONTAINER */
#heroCarousel .container {
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
#heroCarousel img {
    max-height: 400px;
    object-fit: contain;
}

/* OVERFLOW */
#heroCarousel .carousel-inner {
    overflow: hidden;
}

/* FLÈCHES */
#heroCarousel .carousel-control-prev {
    left: -40px;
}

#heroCarousel .carousel-control-next {
    right: -40px;
}

/* STYLE FLÈCHES */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 18px;
}

/* TEXTE */
#heroCarousel .col-lg-7 {
    max-width: 600px;
}

/* MASQUER IMAGE HERO SUR MOBILE */
@media (max-width: 768px) {
    #heroCarousel .col-lg-5 {
        display: none;
    }
}
======================================================
🧱 HOMEPAGE SECTIONS
======================================================
*/

/* Categories */
.category .laptops:hover {
	background-color: #ffc107 !important;
	color: #fff !important;
}

.category .drones:hover {
	background-color: #01bfe5 !important;
	color: #fff !important;
}

.category .smartphones:hover {
	background-color: #f75e93 !important;
	color: #fff !important;
}

.category .gaming:hover {
	background-color: #e30000 !important;
	color: #fff !important;
}

.category .card:hover .text-black {
	color: #ffffff !important;
}

/* Hover text */
.category .laptops:hover p,
.drones:hover p,
.smartphones:hover p,
.gaming:hover p {
	color: #ebebeb !important;
}


/*
======================================================
🖼️ IMAGES & ANIMATIONS
======================================================
*/
.zoom-img .card-img-top {
	transition: transform .4s;
}

.zoom-img:hover .card-img-top {
	transform: scale(1.1);
}


/*
======================================================
📊 CARTES & BLOCS
======================================================
*/
.more-information .card:hover .card-header > div {
	background-color: #e30000 !important;
}

.more-information .card:hover {
	border-color: transparent !important;
	box-shadow: 0 1px 16px 0 rgba(97, 97, 97, 0.1);
}


/*
======================================================
🛒 SHOP ITEMS
======================================================
*/
.shop-item-card {
	position: relative;
	margin-bottom: 20px;
}

.shop-item-card .card-footer {
	position: absolute;
	bottom: 0;
	right: 0;
}

.shop-item-card .card-footer .btn {
	font-size: 17px;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-item-card .card-body {
	padding-bottom: 0px;
}


/*
======================================================
🎥 VIDEO / ABOUT
======================================================
*/
.bg-video {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/video.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
}

.testimonial-img {
	width: 80px;
}


/*
======================================================
🏷️ LOGO
======================================================
*/
.site-brand img {
	max-height: 70px;
}


/*
======================================================
🦶 FOOTER
======================================================
*/
.social-icons a {
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*
======================================================
📱 RESPONSIVE
======================================================
*/
@media (max-width:992px) {
	.m-none {
		display: none;
	}
}