* {
	font-family: 'Noto Sans';
}
body {
	background-color: #f5f3ea;
}
.container {
	max-width: 1400px;
	overflow:hidden;
}
section {
	padding-left: unset;
}
img {
	width: auto;
	max-width: 100%;
}
.row {
    margin-right: unset;
    margin-left: unset;
}

/* Thanh đầu trang*/
.ocv-thanh-dau-trang {
	background-color: #d5df21;
	overflow: unset;
}
.ocv-thanh-dau-trang .container {
	overflow: unset;
}
.thanh-dau-trang {
	padding-top: 10px;
	padding-bottom: 10px;
}
.thanh-dau-trang .row {
	display: flex;
    align-items: center;
}
.thanh-tim-kiem {
	text-align: center;
	padding: 30px;
}
form.search-1 {
	width: 100%;
	background-color: #fff;
	margin-right: 20px;
	margin-bottom: unset;
	height: 40px;
	border-radius: 5px;
	overflow: hidden;
	display:flex;
	align-items: center;
	justify-content:space-between;
	gap: 10px;
	padding: 5px 5px 5px 10px;
	
}
input{
	outline: none;
	border: none
}
input:focus {
	outline: none;
	border: none
}
form.search-1 input[type=search]{
	width: 100%;
}
form.search-1 button {
	width: 50px;
	display: flex;
	align-items: center;
	justify-content:center;
	height: 100%;
	border-radius: 5px;
	border:none;
	color: #fff;
	background-color: #d5df21;
}
button:focus {
	outline: none;
}
input[type=search]:focus {
	outline: none;
}
.logo-dau-trang-mb {
	display:none;
}
.logo-dau-trang {
	padding: unset;
	display:flex;
	align-items: center;
}
.logo img {
	height: 100%;
	padding: unset;
	margin:unset;
	display:flex;
	align-items: center;
}

.button-panel {
	display: flex;
	align-items: center;
	justify-content:flex-end;
}
.button-panel .hoat-dong {
	display: flex;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
	
}
.button-panel .hoat-dong .icon-hoat-dong {
	font-size: 24px;
	padding-right: 10px;
}

.button-panel .hoat-dong .nd-hoat-dong {
	display: flex;
	flex-direction: column;
}

.ocv-thanh-dau-trang a {
	text-decoration: none;
	color: #333;
}
/* drop-down*/
.image-dropdown {
	position: relative;
	width: 50px;
	cursor: pointer;
}

/* Wrapper của danh sách để dễ tùy chỉnh */
.dropdown-wrapper {
	display: none;
	position: absolute;
	top: 100%;
	left: -100px;
	width: 150px;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 10px;
	z-index: 9999;
}

.dropdown-wrapper h4 {
	margin-top: 0;
	font-size: 16px;
	color: #333;
}

.dropdown-list {
	list-style: none;
	padding: 0;
}

.dropdown-list li {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.dropdown-list li:hover {
	background-color: #ddd;
}

.dropdown-wrapper .ngon-ngu {
	display: flex;
	gap: 10px;
	align-items: center;
}
.dropdown-wrapper .icon-ngon-ngu img{
	max-width: 30px;
}




.menu {
  display: flex;
	justify-content: flex-start; /* Căn giữa theo chiều ngang */
	align-items: center; /* Căn giữa theo chiều dọc */
  padding: 10px;
  background-color: #ffff;
  z-index:999;
	width: 100%;
	    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Tạo đổ bóng cho văn bản */

}
.menu .row {
	display: flex;
	justify-content: center; /* Căn giữa theo chiều ngang */
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}

.menu-items {
  display: flex;
  align-items: center; /* Căn giữa theo chiều dọc */	  
}
.menu-items ul {
	display: flex;
	align-items: center; /* Căn giữa theo chiều dọc */
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-items ul li {
  margin-right: 30px;
  position: relative;
}

.menu-items ul li .fa {
	margin-left: 5px;
	transition: transform 0.5s ease-in-out;
}

.menu-items ul li ul {
  width: 300px; /* đặt chiều rộng của menu cấp 2 là 200px */
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  background-color: #fff;
    z-index:999;
	padding: 20px 0px 20px 20px;

}
.menu-items ul li a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
}

.menu-items ul li:hover ul {
  display: block;
}
.menu-items ul li:hover .fa{
    transform: rotate(-180deg);
}

.menu-items ul li ul li {
  margin-top: 15px;
  z-index:999;
}
.menu-items ul li ul li a {
	font-weight: unset;
}


.menu-items ul li a:hover {
  color: #0099ff;
}
.submenu {
	opacity: 0;
	transition: opacity 0.5s ease;
}
.menu-items ul li:hover .submenu {
	opacity: 1;
}
/* menu mobile */
.mobile-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
  z-index: 999;
  position: relative;
  color: #fff;
  width: 100%;
}


.mobile-menu .hamburger {
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu .menu-items {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-menu .menu-items ul {
   align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .menu-items ul {
flex-direction: column;
}

.mobile-menu .menu-items ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.mobile-menu .menu-items ul li ul {
  display: none;
  padding-left: 20px;
}

.mobile-menu .menu-items ul li:hover ul {
  display: block;
}

.mobile-menu .menu-items ul li a {
  color: #232323;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-menu .menu-items ul li a:hover {
  color: #0099ff;
}

.mobile-menu .menu .fa {
  margin-right: 10px;
}

.mobile-menu .submenu {
  display: none;
}


.mobile-menu  .menu-items ul li .submenu.show {
  display: block;
}

.menu-items ul li .submenu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.has-submenu .fa-caret-down {
 color: #232323;
  cursor: pointer;
}
.mobile-menu .menu-items ul li:hover ul,
.mobile-menu .menu-items ul li .submenu.show {
  display: block;
}
.mobile-menu .fa {
	margin-right: 15px;
}
.mobile-menu .submenu {
  display: none;
}
.mobile-menu .menu-items ul li ul li a {
color: #333;
}
.mb-menu-1 {
	display: none;
}



/* slider chung */
.owl-carousel .item {
	position: relative;
	height: auto;
    width: 100%;
    overflow: hidden;
	background: unset;
}

/* slider đầu trang */
.slider-chinh .owl-carousel {
	position:relative;
	width: 1300px;
	border-radius: 10px;
	overflow: hidden;
}

.slider-chinh .owl-carousel .item img {
    width: 100%;
    height: auto;
}

.slider-chinh .owl-dots {
	position: absolute;
	width: 100%;
	bottom: 20px;
}
.slide-mb {
	display:none;
}

/* slider danh mục sản phẩm */
.ocv-danh-muc {
	padding-top: 30px;
	padding-bottom: 30px;
}
.slider-danh-muc-san-pham .owl-carousel {
	width: 1300px;
	overflow: hidden;
}
.slider-danh-muc-san-pham .owl-carousel .item {
	border-radius: 10px;
}
.ocv-danh-muc .slider-danh-muc-san-pham .hinh-anh-danh-muc-sp {
	width: 100%; 

	overflow: hidden;
}
.ocv-danh-muc .slider-danh-muc-san-pham .hinh-anh-danh-muc-sp img{
	width: 100%; 
	object-fit: contain;
	transition: transform 0.5s ease;
}

.ocv-danh-muc .slider-danh-muc-san-pham .thong-tin-danh-muc-sp {
	position: absolute;
	bottom: 1px;
	text-align: center;
	width: 100%;
}
.ocv-danh-muc .slider-danh-muc-san-pham .thong-tin-danh-muc-sp .ten-danh-muc-sp{
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}
.ocv-danh-muc .slider-danh-muc-san-pham .danh-muc-sp:hover .hinh-anh-danh-muc-sp img{
	transform: scale(1.1);
}
/* slider flase sale */
.ocv-flash-sale .flash-sale-1 {
	background-color: #f15a23;
	border-radius: 10px;
	padding: 15px 10px 15px 10px;
}
.ten-muc {
	margin-bottom: 20px;
}
.ten-muc a {
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}
.ocv-flash-sale .ten-muc a {
	color: #fff;
}
.ocv-flash-sale .ten-muc .fa {
	font-size:10px;
	color: #ff0000;
}

.ocv-flash-sale .flash-sale-1 {
	position: relative;
}

.ocv-flash-sale .flash-sale .owl-carousel {
	width: 1300px;
}

.san-pham {
	border-radius:10px;
	overflow: hidden;
	background-color: #fff;
	padding: 10px;
	text-align: center;
	transition: box-shadow 0.3s ease;
	margin-bottom: 10px;
}
.san-pham:hover {
	box-shadow: 0px 5px 10px  rgba(0, 0, 0, 0.2);
}
.ocv-flash-sale .flash-sale .san-pham {
	background-color: #fff;
}
.san-pham .hinh-san-pham {
	height: 200px;
	position: relative;
}
.san-pham .hinh-san-pham img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.san-pham .nut-xem-nhanh {
	display:flex;
	align-items: center;
	justify-content:center;
	position: absolute;
	top: 50%;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    line-height: 31px;
    border-radius: 50%;
    border: 1px solid #eee;
    text-align: center;
    background: #fff;
    color: #6d6565;
    opacity: 0;
}
.san-pham .nut-xem-nhanh a {
	color: #6d6565;
}
.san-pham:hover .nut-xem-nhanh {
	opacity: 1;
}
.san-pham .nut-xem-nhanh:hover {
	background: #444444;
	border: 1px solid #fff;
	color: #fff;
}
.san-pham .thong-tin-san-pham {
	padding: 10px;
}
.san-pham .thong-tin-san-pham .nhan-hieu-san-pham {
	color: #9a9a9a;
}
.san-pham .thong-tin-san-pham .ten-san-pham {
	color: #333;
	font-family: 'Noto Sans';
}
.san-pham .thong-tin-san-pham .ten-san-pham a{
	color: #333;
	font-family: 'Noto Sans';
	text-decoration: none;
}
.san-pham .gia-san-pham {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}
.san-pham .gia-san-pham .gia-giam-gia {
	color: #ff2c26;
	font-weight: bold;
}
.san-pham .gia-san-pham .gia-goc {
	color: #333;
    font-weight: bold;
}
.flash .gia-san-pham .gia-goc {
	color: #878c8f;
    text-decoration: line-through;
    font-weight: 300;
    font-size: 13px;
}
.san-pham .nut-them-vao-gio {
	display:flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.9s ease;
}

.san-pham .nut-them-gio {
	display:flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 50px;
	position: relative;
	gap: 10px;
	padding: 0 45px 0 15px;
    height: 33px;
    line-height: 30px;
    outline: none;
	border: 1px solid transparent;
	background: #fff;	
	transition: transform 0.3s ease, border 0.3s ease;
}
.san-pham .nut-them-gio:hover {
	border: 1px solid #7fba00;
}
.san-pham:hover .nut-them-gio {
	border: 1px solid #7fba00;
}
.san-pham .nut-them-gio .icon-them-gio {
	position: absolute;
	right: -1px;
	top:-1px;
	color:#fff;
	display:flex;
	justify-content: center;
	align-items: center;
    width: 32px;
    height: 32px;
    background: #7fba00;
    border-radius: 50%;
    transition: all 0.5s;
    cursor: pointer;
}
.san-pham .nhan-giam-gia {
	position: absolute;
	background-color: #ff0000;
	color: #fff;
	top: 10px;
	left: 10px;
	padding: 5px;
	border-radius: 5px;
}
.flash-sale .owl-carousel .owl-nav {
	display:flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -60px;
	right: 0;
	margin-top: unset;
}
.flash-sale .owl-carousel .owl-nav button {
	border-radius: 50px;
	font-size: 35px;
	background-color: #fff;
	height: 30px;
	width: 30px;
	display:flex;
	justify-content: center;
	align-items: center;
	color: #333;
	
}
.flash-sale .owl-carousel .owl-nav button span {
	line-height: unset;
	display:flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 8px;
}
.xem-tat-ca {
	margin-top:30px;
	float: unset;
    padding-right: unset;
    padding-top: unset;
    text-transform: unset;
	text-align: center;
	margin-bottom: 20px;
}
.xem-tat-ca a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Đặt vị trí ban đầu ra ngoài bên trái */
    width: 100%;
    height: 100%;
    background-color: #ff6600; /* Màu cam */
    transition: left 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86); /* Hiệu ứng chạy */
    z-index: -1; /* Đặt lớp nền phía sau text */
}
.xem-tat-ca a {
	text-decoration: none;
	color: #333;
	background-color: #fff;
	padding: 10px 60px 10px 60px; 
	border-radius: 5px;
	min-width: 320px;
	transition: color 0.9s ease;
}
.xem-tat-ca a:hover::before {
	 left: 0;
}

.xem-tat-ca a:hover {
	color: #fff;
	background-color: #f15a23;
	transition: transform 0.9s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* slider hàng mới về */
.ocv-hang-moi-ve {
	margin-top: 20px;
}
.ten-muc a{
	color:#333;
}
.hang-moi-ve .owl-carousel {
	width: 1300px;
	overflow: hidden;
}
.hang-moi-ve .owl-carousel .sp-hmv .hinh-san-pham{
	height: 200px;
}
.hang-moi-ve .owl-carousel .sp-hmv .hinh-san-pham img {
	width: 100%;
    height: 100%;
	object-fit:contain;
}
.hang-moi-ve .owl-carousel .sp-hmv .hinh-san-pham-1 {
	position: absolute;
	width: 100%;
	height: 200px;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
	opacity: 1;
}

.hang-moi-ve .owl-carousel .sp-hmv .hinh-san-pham-2 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
	opacity: 0;
}
.hang-moi-ve .owl-carousel .sp-hmv:hover .hinh-san-pham-1{
	opacity: 0;
}
.hang-moi-ve .owl-carousel .sp-hmv:hover .hinh-san-pham-2{
	opacity: 1;
}



/* Combo giá hời */
.ocv-combo-gia-hoi{
	margin-bottom: 50px;
}

.banner-combo-gia-hoi {
	width: 100%;
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 10px;
	overflow: hidden;
}
.banner-combo-gia-hoi img{
	width: 100%;
}
.combo-gia-hoi-slide .owl-carousel {
	width: 1300px;
}

.combo-gia-hoi-slide .owl-carousel .owl-nav {
	display:flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -60px;
	right: 0;
	margin-top: unset;
}
.combo-gia-hoi-slide .owl-carousel .owl-nav button {
	border-radius: 50px;
	font-size: 35px;
	background-color: #fff;
	height: 30px;
	width: 30px;
	display:flex;
	justify-content: center;
	align-items: center;
	color: #333;
	
}
.combo-gia-hoi-slide .owl-carousel .owl-nav button span {
	line-height: unset;
	display:flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 8px;
}


/* Danh mục sản phẩm */
.ocv-danh-muc-san-pham-2 {
	background-color: #d5df21;
	padding-top: 20px;
	padding-bottom: 50px;
}
.ocv-danh-muc-san-pham-2 .ten-muc {
	text-align: center;
	font-size: 25px;
    font-weight: bold;
    color: black;
}
.ocv-danh-muc-san-pham-2 .hinh-damu {
	border-radius: 50%;
	background-color: #fff;
	margin: 20px;

	transition: box-shadow 0.3s ease;
}
.ocv-danh-muc-san-pham-2 .damusp:hover .hinh-damu {
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
.ocv-danh-muc-san-pham-2 .damusp .ten-damu{
	display:flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
    font-weight: bolder;
    margin: 0;
    color: #000000;
	text-align: center;
}
.ocv-danh-muc-san-pham-2 .link-damusp {
	text-decoration: none;
}


/* Sản phẩm nổi bật */
.ocv-san-pham-noi-bat {
	padding-top: 50px;
	padding-bottom: 20px;
}
.ocv-san-pham-noi-bat .container{
	overflow: unset;
}
.ocv-san-pham-noi-bat button {
	border: none;
	outline: none;
}
.ocv-san-pham-noi-bat .san-pham-noi-bat {
	position: relative;
}
.ocv-san-pham-noi-bat .group1-tab {
	position: absolute;
	display:flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 20px;
	top: -60px;
	right: 0px;
}
.ocv-san-pham-noi-bat .tab button {
    background-color: transparent;
    float: left;
	padding: 10px 15px 10px 15px;
    border: 1px solid #d4d4d4;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
	border-radius: 20px;
	outline: none;
	margin: 5px;
	font-weight: bold;
}
.ocv-san-pham-noi-bat .tablinks.active {
    background-color: #f15a23;
    color: white;
    border-radius: 20px;
	border: none;
	outline: none;
}



.ocv-san-pham-noi-bat .noi-dung-tab {
	margin-left: 0px;
	padding: 15px;
	padding-left:0px;
	display: flex;
	flex-wrap:wrap;
	justify-content: flex-start;
    align-items: center;
	gap: 20px;
}
.ocv-san-pham-noi-bat .sp-tab {
	width: 18%;
}

.ocv-san-pham-noi-bat .nut-xem-tat-ca {
	text-align: center;
}
.ocv-san-pham-noi-bat .nut-xem-tat-ca button {
	color: #f15a23;
	background: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	border: 1px solid #f15a23;
	font-weight: bold;
	transition: color 0.2s;
}
.ocv-san-pham-noi-bat .nut-xem-tat-ca button:hover {
	color: #fff;
	background: #f15a23;
}

/* banner-trang-chu */
.ocv-banner-trang-chu {
	padding-top: 20px;
	padding-bottom: 20px;
}
.ocv-banner-trang-chu .banner-2:first-child {
	padding-right: 10px;
	
}
.ocv-banner-trang-chu .banner-2:last-child {
	padding-left: 10px;
	
}
.ocv-banner-trang-chu .banner-trai {
	width: 100%;
	height: 300px;
	overflow: hidden;
	border-radius: 15px;
}
.ocv-banner-trang-chu .banner-phai {
	width: 100%;
	height: 300px;
	overflow: hidden;
	border-radius: 15px;
}



/* slide nông sản */
.ocv-nong-san {
	
}

.ocv-nong-san .container {
	background-color: #fff;
	overflow: unset;
}
.ocv-nong-san .list-nong-san {
	overflow:hidden;
}
.ocv-nong-san .list-nong-san .ten-muc{
	padding:15px 10px 0px 15px;
}

.ocv-nong-san .slide-nong-san .owl-carousel {
	position:relative;
	width: 850px;
	padding: 0px 15px 15px 15px;
	overflow: unset;
}


.ocv-nong-san .slide-nong-san .sp-nong-san {
	display: flex;
	gap: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eae4e8;
}
.ocv-nong-san .slide-nong-san .item .sp-nong-san:last-child {
	border-bottom: unset;
}
.ocv-nong-san .slide-nong-san .hinh-sp-nong-san {
	width: 20%;
}
.ocv-nong-san .slide-nong-san .thong-tin-sp-nong-san {
	width: 80%;
}
.ocv-nong-san .slide-nong-san .gia-sp-nong-san .gia-ban {
	font-weight: bold;
}

.ocv-nong-san .banner-nong-san {
	padding-left: unset;
	padding-right: unset;
	height: 100%;
}

.ocv-nong-san .slide-nong-san .owl-carousel .owl-nav {
	display:flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -60px;
	right: 0;
	margin-top: unset;
}
.ocv-nong-san .slide-nong-san  .owl-carousel .owl-nav button {
	border-radius: 50px;
	font-size: 35px;
	background-color: #fff;
	height: 30px;
	width: 30px;
	display:flex;
	justify-content: center;
	align-items: center;
	color: #333;
	
}
.ocv-nong-san .slide-nong-san  .owl-carousel .owl-nav button span {
	line-height: unset;
	display:flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 8px;
}




/* slide bài viết */
.ocv-bai-viet {
	padding-top: 40px;
	padding-bottom: 40px;
}
.ocv-bai-viet a {
	text-decoration: none;
	color:#333;
}
.ocv-bai-viet .bai-viet .owl-carousel {
	width: 1300px;
}
.ocv-bai-viet .bai-viet .owl-carousel .item {
	background-color: #fff;
	border-radius: 5px;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 {
	position:relative;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 .thong-tin-tin-tuc {
	padding: 15px;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 .tieu-de-tin-tuc{
	font-size: 16px;
	font-weight: bold;
		display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 .mo-ta-tin-tuc{
	color: #a8aeba;
	padding-top: 10px;
	padding-bottom: 10px;
	display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	border-bottom: 1px solid #eae4e8;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 .ngay-tin-tuc {
	color: #a8aeba;
	font-size: 11px;
	padding-top: 10px;
}
.ocv-bai-viet .bai-viet .owl-carousel .tin-tuc-1 .nut-xem-them {
	position: absolute;
	color: #a8aeba;
	font-size: 11px;
	right: 15px;
	bottom: 15px;
}




/* Đăng ký nhận tin*/
.ocv-dang-ky-nhan-tin {
	margin-top: 20px;
	background: #d5df21;
	padding-top: 20px;
	padding-bottom: 20px;
}
.ocv-dang-ky-nhan-tin a {
	text-decoration: none;
	color: #333;
}
.ocv-dang-ky-nhan-tin .tieu-de-dang-ky {
	padding-top: 7px;
	font-size: 20px;
    color: #333;
    font-weight: bold;
}
.ocv-dang-ky-nhan-tin .dang-ky-nhan-tin .form-dang-ky .dang-ky-1 {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 5px;
}
.ocv-dang-ky-nhan-tin .dang-ky-nhan-tin .form-dang-ky .dang-ky-1 input {
	outline: none;
	border: none;
	border-radius: 50px;
	width: 70%;
	padding: 10px;
}
.ocv-dang-ky-nhan-tin .dang-ky-nhan-tin .form-dang-ky .dang-ky-1 button {
	border-radius: 50px;
	outline: none;
	border: none;
	padding: 10px 25px;
	background-color: #f15a23;
	color: #fff;
	font-weight: bold;
}
.ocv-dang-ky-nhan-tin .mang-xa-hoi {
	display:flex;
	align-items:center;
	justify-content: flex-end;
	font-size: 20px;
	color: #333;
	font-weight: bold;
}
.ocv-dang-ky-nhan-tin .mang-xa-hoi .icon-mxh {
	display:flex;
	align-items:center;
	justify-content: center;
	gap: 10px;
}
.ocv-dang-ky-nhan-tin .content {
	text-align: right;
	padding-right: 15px;
}
.ocv-dang-ky-nhan-tin .mang-xa-hoi .icon-mxh .icon-1 {
	display:flex;
	align-items:center;
	justify-content: center;
	font-size: 14px;
	padding: 10px;
	border-radius: 60px;
	color: #fff;
	border: 1px solid #fff;
	min-width: 35px;
}
.ocv-dang-ky-nhan-tin .mang-xa-hoi .icon-mxh .icon-1 a{
	color: #fff;
}


.ocv-chan-trang {
	padding-top: 30px;
	padding-bottom: 20px;
	background-color: #333333;
	color: #fff;
}
.ocv-chan-trang a {
	color: #fff;
	text-decoration: none;
}
.ocv-chan-trang .ten-danh-muc {
	font-size: 18px;
	font-weight: bold;
}
.ocv-chan-trang .ten-danh-muc .link-dm-1 {
	font-size: 14px;
}
.ocv-chan-trang .ten-danh-muc .link-dm-1 a{
	font-weight: 400;
}
.ocv-chan-trang .ten-danh-muc .link-dm-1 {
    list-style-type: disc; 
    margin-left: 20px; 
    padding-left: 0; 
}

@media (max-width: 768px) {
	.logo-dau-trang-mb {
		display:flex;
		align-items:center;
		justify-content:center;
	}
	.logo-dau-trang-mb img {
		width: 100px;
		height: auto;
	}
	.thanh-tim-kiem {
		padding: 30px 30px 30px 0;
	}
	.button-panel .thanh-dang-nhap .nd-hoat-dong {
		display:none;
	}
	div.col-sm-1.logo-dau-trang {
		display:none;
	}
	.menu {
		display:none;
	}
	.mb-menu-1 {
		display: block;
	}
	.menu-items ul li ul {
		background-color: #fff;
		width: 100%;
	}
	/* slider đầu trang */
	.slide-mt {
		display:none;
	}
	.slide-mb {
		display:block;
	}
	.slider-chinh .owl-carousel {
		width: 95vw;
		border-radius: 10px;
		overflow: hidden;
	}
	.slider-danh-muc-san-pham .owl-carousel {
		width: 95vw;
	}
	.ocv-flash-sale .flash-sale .owl-carousel {
		width: 95vw;
	}
	.hang-moi-ve .owl-carousel {
		width: 95vw;
	}
	.combo-gia-hoi-slide .owl-carousel {
		width: 95vw;
	}
	.sp-tab {
		width: 45%;
	}
	.slide-nong-san .owl-carousel {
		width: 95vw;
	}
	.ocv-nong-san .slide-nong-san .owl-carousel {
		width: 95vw;
	}
	.ocv-bai-viet .bai-viet .owl-carousel {
		width: 95vw;
	}
	.ocv-san-pham-noi-bat .san-pham-noi-bat .banner-sp-nb .banner-1 img{
		width: 100%;
	}
	.ocv-san-pham-noi-bat .noi-dung-tab {
		margin-left: unset;
		padding:unset;
		gap: 10px;
	}
	.ocv-san-pham-noi-bat .sp-tab {
		width: 47%;
	}
	.ocv-san-pham-noi-bat .nut-them-vao-gio {
		width: 100%;
	}
	.ocv-san-pham-noi-bat .san-pham .nut-them-gio {
		padding: 0 45px 0 0px;
	}
	.ocv-banner-trang-chu .banner-trai {
		height: auto;
		margin-bottom: 10px;
	}
	.ocv-banner-trang-chu .banner-2:first-child {
		padding-right: unset;
	}
	.ocv-banner-trang-chu .banner-2:last-child {
		padding-left: unset;
	}
	.ocv-banner-trang-chu .banner-phai {
		height: auto;
		margin-bottom: 10px;
	}
	.ocv-san-pham-noi-bat .group1-tab {
		padding-top: 10px;
		padding-bottom: 10px;
		position: unset;
		 display: flex;
		flex-wrap: wrap;
		gap: 5px; 
		justify-content: center;
		width: 100%;
	}
	.ocv-dang-ky-nhan-tin .tieu-de-dang-ky {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.ocv-dang-ky-nhan-tin .dang-ky-nhan-tin .form-dang-ky .dang-ky-1 input {
		width: 65%;
	}
	.ocv-danh-muc-san-pham-2 .damusp .ten-damu {
		text-align: center;
	}
	.ocv-dang-ky-nhan-tin .mang-xa-hoi {
		justify-content: flex-start;
	}
}

