:root {
	 --bg-color: #a75e33;
	 --light-role: #e7d9ce;
	 --radius-carousel-indicator: 6px;
}
 * {
	 box-sizing: border-box;
}
 .flex {
	 display: flex;
}

 @media screen and (min-width: 768px) {
 .img-container img {
	 max-width: 100%;
}
}
 .text-container {
	 color: #fff;
	 margin-left: 20px;
}
 @media screen and (max-width: 768px) {
	 .text-container {
		 margin-left: 0;
		 margin-top: 20px;
	}
	 .img-container img {
	 max-width: 100%;
}
}
 .text-container .title {
	 font-size: 42px;
	 font-family: Montserrat-Bold;
	 margin-bottom: 20px;
}
 @media screen and (max-width: 768px) {
	 .text-container .title {
		 font-size: 28px;
	}
}
 @media screen and (max-width: 768px) {
	 .description {
		 font-size: 12px;
	}
}
.slider {
  background-color: var(--bg-color);
  margin-bottom: 30px;
}

.carousel-indicators button {
  border-radius: 100%;
  border: none;
  cursor: pointer;
}

.carousel-indicators li {
  background-color: transparent;
  border: 1px solid #ccc;
  margin: 0 7px;
  width: var(--radius-carousel-indicator);
  height: var(--radius-carousel-indicator);
    border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ccc;
}

 .product {
	 margin-top: 60px;
}
 .filter {
	 color: var(--bg-color);
	 padding: 0 20px;
}
 .filter > .title {
	 padding-bottom: 5px;
	 border-bottom: 7px solid var(--light-role);
	 font-family: Montserrat-Bold;
}
 .filter .filter-session {
	 margin-top: 30px;
}
 .filter-session > .title {
	 margin-bottom: 15px;
	 font-size: 20px;
	 font-family: PlayfairDisplay-Regular;
}
 .name a {
	 text-decoration: none;
	 color: #a65e32;
	     font-family: TIMES;
}
 .filter-session input[type="checkbox"] {
	 margin-right: 8px;
}
 .filter-session .options-container {
	 padding-bottom: 5px;
	 border-bottom: 1px solid var(--bg-color);
	 margin-bottom: 15px;
}
 @media screen and (max-width: 768px) {
	 .filter-session .options-container {
		 display: grid;
		 grid-template-columns: 1fr;
	}
}
 .filter-session .options-container > div {
	 margin-bottom: 10px;
	 align-items: baseline;
}
 .list-product-session .wrapper {
	 color: var(--bg-color);
	 background-color: var(--light-role);
	 margin-bottom: 30px;
}
.wrapper .img {
	    height: 391px;
    overflow: hidden;
    position: relative;
}
.box:hover .img img {
	 transform: scale(1.2);
}
 .list-product-session .img img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	  transform: scale(1);
    transition: 0.3s;
}
 .list-product-session .info {
	 padding: 10px 15px 5px;
}
 .list-product-session .info .type {
	 font-size: 12px;
	 margin-bottom: 10px;
	 text-transform: uppercase;
}
 .list-product-session .info .name {
	  font-family: TIMES;
	 font-size: 18px;
	 min-height: 80px;
}
 .list-product-session .info .price {
	 font-size: 12px;
	 margin-bottom: 15px;
}
 .list-product-session .info .order-btn {
	 border: none;
	 width: 100%;
	 background-color: var(--bg-color);
	 color: var(--light-role);
	 padding: 10px 20px;
	 font-size: 14px;
	 margin-bottom: 10px;
	 font-family: Montserrat-Regular;
}
 .list-product-session .info .order-btn:hover {
	 opacity: 0.8;
}
 .list-product-session .info .order-btn:active {
	 opacity: 1;
}
 .list-product-filter {
	 display: flex;
	 justify-content: flex-end;
	 align-items: center;
	 padding: 0;
	 color: var(--bg-color);
	 margin-bottom: 30px
}
 .custom-select {
	 position: relative;
	 display: inline-block;
	 width: 200px;
	 margin-bottom: 20px;
	 text-align: left;
}
#productFilter {
	 width: 20%;
}
 @media screen and (max-width: 768px) {
	 .custom-select {
		 font-size: 12px;
		 width: 150px;
	}
	 #productFilter {
	 width: 45%;
}
}
select:focus-visible {
  outline: none;
}
.select-options {
	color: #a65e32;
    border: none;
    border-bottom: 1px solid #a65e32;
    padding: 10px;
}
 .custom-select .select-options.show {
	 display: block;
}
 .custom-select .select-options .option {
	 padding: 10px;
	 cursor: pointer;
}
 .custom-select .select-options .option:hover {
	 background-color: #f1f1f1;
}
 .list-product-filter .page-link {
	 color: var(--bg-color);
}
 .list-product-filter .page-link:active {
	 outline-color: var(--light-role);
}

/*popup*/
.popup {
  display: none;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 999999;
}

.popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.content {
  margin-top: 10px;
}

.arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
/*bay vao gio hang*/
  @keyframes flyToCart {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    50% {
      transform: translate(200px, -200px);
      opacity: 0.5;
    }
    100% {
      transform: translate(400px, -400px);
      opacity: 0;
    }
  }
.product .pagination .page-link {
	border: none !important;
	color: var(--bg-color);
}
 .product .pagination {
display: flex;
    align-items: center;
    justify-content: center;
	
}
.pagination a {
  font-size: 15px;
  line-height: 1.6;
  color: rgb(166, 95, 49) !important;
  text-align: left;
  text-decoration: none;
  padding: 0 8px;
  cursor: pointer;
}

.pagination a:hover {
  font-weight: bold;
  color: rgb(166, 95, 49);
}

.pagination a.active {
  font-weight: bold;
  font-size: 16px;
}

.pagination span {
  color: rgb(166, 95, 49);
  padding: 0 12px;
}

.btn-pagination {
  color: rgb(166, 95, 49);
  background-color: transparent;
  border: none;
  padding: 0 10px;
  font-size: 18px;
}

.left {
  width: 30px;
  height: 30px;
   background-image: url(/Lafloresta/img/theme/left-arrow.svg);
  background-size: cover;
  margin-right: 10px;
}

.right {
  width: 30px;
  height: 30px;
	background-image: url(/Lafloresta/img/theme/right-arrow.svg);
  background-size: cover;
  margin-left: 10px;
}
