@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root{
	--primary-color: #FEB614;
	--secondary-color: #af7900;
	--text-color: #000;
	--header-color: #0e0e0e;
	--text-white: #ffff;
	--primary-font: "Bree Serif", serif;
	--secondary-font: "Poppins", sans-serif;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #fff;
}
a:hover{
	color: #fff;
}
ul, ol{
	list-style-type: none;
}
body{
	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
}
html, body{
	scroll-behavior: smooth;
}
h1{
	font-family: var(--primary-font);
	font-weight: 900;
}
h2, h3, h4, h5{
	font-family: var(--primary-font);
	margin: 0;
}
P{
	margin: 0;
}
section{
	padding: 70px 0;
}
.btns{
	padding: 12px 40px;
    text-transform: uppercase;
	background: var(--primary-color);
	color: var(--text-white);
	border-radius: 40px;
	transition: all .5s ease-in-out;
	border: 2px solid var(--primary-color);
	position: relative;
	display: inline-block;
}
.btns span{
	position: relative;
	z-index: 5;
}
.btns::before{
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--secondary-color);
	z-index: 1;
	border-radius: 50px;
	transition: all .5s ease-in-out;
}
.btns:hover::before{
	width: 100%;
	height: 100%;
}
.btns:hover{
	color: var(--text-white);
}

/* Sidebar */
#sidebar-wrapper {
  width: 260px;
    min-height: 100vh;
    transition: all 0.3s ease;
    background: var(--header-color);
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: -225px;
}
.tp-prd .card-header{
	background: #131313;
}
#page-content-wrapper {
  flex: 1;
  background: #f8f9fa;
}
.tp-prd span{
	display: flex;
	align-items: center;
}
.btdt .card-header{
	background: var(--header-color);
}
.bi-gear-fill{
	color: var(--primary-color);
}
.card-body tr, .card li{
	border: 1px solid #a4a4a4 !important;
}
.lsttt li{
	display: flex;
	gap: 5px;
}
.dash-top {
    background: #252525;
    border-left: 1px solid #ffffff7a;
}
.nav-link {
  padding: 10px 15px;
  border-radius: 6px;
  transition: 0.2s;
}
.dash-top
.nav-link:hover {
  background-color: #343a40;
  color: white;
}

.ttle-wheels{
	background: var(--secondary-color);
}
.ttle-tire{
	background: var(--text-color);
}
.nw-order{
	background: var(--primary-color);
}
.lw-stock{
	background: red;
}
.overr .card-body{
	padding: 30px;
	color: #fff
}
.overr .card-body h6{
	font-size: 20px;
    margin-bottom: 15px;
}
.overr .card-body h4{
	font-size: 30px;
	font-weight: 600;
}


.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
}
#imagePreview {
  max-height: 200px;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 8px;
  background-color: #fff;
}

.order-s .table th {
  font-weight: 600;
}

.order-s .badge i {
  vertical-align: middle;
}

.order-s .product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.order-s td .btn {
  margin-right: 5px;
}
.table tr{
	border: 1px solid var(--header-color) !important;
}
.order-s .table tr img.product-img {
	width: 44px;
	height: 44px;
}
.table-light tr{
	background: var(--header-color) !important;
	padding: 12px !important;
	font-family: var(--primary-font);
}
.table-light tr th{
	background: var(--header-color) !important;
	color: var(--text-white);
	font-weight: 400;
    font-size: 18px;
}
.table tr td{
	padding: 12px 10px;
	font-family: var(--secondary-font);
}
.table tr:nth-child(even) td{
	background: #f9f9f9;
}
.form-container {
    background: #e8e8e8;
    padding: 30px;
    border-radius: 10px;
}
label{
	font-family: var(--primary-font);
}
label i{
	padding-right: 6px;
}
#inventoryForm input, #inventoryForm select{
	padding: 10px;
	border: 1px solid var(--header-color);
	border-radius: 0;
}
.preview-img{
	position: absolute;
    width: 60px;
    bottom: -73px;
    left: 0;
    border: 1px solid var(--secondary-color);
    left: 14px;
}
.invt img{
	width: 50px;
}

.review-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    position: relative;
    font-family: var(--secondary-font);
  }

 .review-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dee2e6;
  }

 .review-card .product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }

 .review-card .stars i {
    color: #ffc107;
  }

  .review-card .edit-area {
    display: none;
    margin-top: 1rem;
  }

 .review-card .actions button {
    margin-left: 0.5rem;
  }
  .review-card h6, .review-card strong{
  	font-family: var(--primary-font);
  }