


        .lamaria-container {
            width: 100%;
            max-width: 100%;
            height: 100vh;
            max-height: 90vh;
            position: relative;
            overflow: hidden;
            background: white;
        }

        .lamaria-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 35% 65%;
            opacity: 0;
            transition: opacity 1s ease;
            z-index: 1;
        }

        .lamaria-slide.lamaria-active {
            opacity: 1;
            z-index: 2;
        }

        .lamaria-background {
            /* width: 60%; */
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .lamaria-color-panel {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            /* width: 822px; */
        }

        .lamaria-text {
            color: white;
            width:50%;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .lamaria-text h2 {
            font-size: 5.2rem;
            margin: 0;
            font-weight: 700;
        }

        .lamaria-text p {
            font-size: 1.8rem;
            margin-top: 15px;
            line-height: 1.5;
        }

        .lamaria-flip-card {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-100%, -50%);
            width: 300px;
            height:350px;
            perspective: 1000px;
        }

        .lamaria-flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border-radius: 12px;
        }

        .lamaria-flip-front, .lamaria-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            background: #ececec;
        }

        .lamaria-flip-front {
            /* Front side - no rotation needed */
        }

        .lamaria-flip-back {
            transform: rotateY(180deg);
        }

        .lamaria-flip-front img,
        .lamaria-flip-back img {
            max-width:100%;
            max-height:100%;
            object-fit: cover;
        }

        .lamaria-controls {
            position: absolute;
            bottom: 25px;
            right: 40px;
            z-index: 10;
            display: flex;
            gap: 15px;
        }

        .lamaria-controls button {
            background:none;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .lamaria-controls button:hover {
            background: #f0f0f0;
            transform: scale(1.1);
			color:#0a4033;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .lamaria-dots {
            position: absolute;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .lamaria-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lamaria-dot.lamaria-active {
            background: white;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,255,255,0.8);
        }

        .lamaria-title {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 5;
            color: #333;
            font-size: 1.8rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .lamaria-container {
                height: 40vh;
            }
            
            .lamaria-slide {
                grid-template-columns: 1fr;
                display: flex;
                grid-template-rows: 50% 50%;
            }
            
            .lamaria-flip-card {
                width: 200px;
                height: 200px;
            }
            
            .lamaria-text h2 {
                font-size: 2.2rem;
            }
            
            .lamaria-text p {
                font-size: 1.1rem;
            }
        }

	.lamaria-text a{
		background:#fff;
		font-family:font-8;
		margin: 15px 0;
		padding:15px 20px 12px;
		font-size:15px;
		float:left;
		transition:all,.3s;
	}

.lamaria-text a:hover{
	background:#171717;
	transition:all,.3s;
	color:#fff;
}













.slider {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  height: 510px;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease, transform 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slide.active {
  display: grid;
  opacity: 1;
  height: 530px;
  transform: translateX(0);
  position: relative;
  align-items: start;
}

.slide-text, .slide-image {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slide.active .slide-text {
  transform: translateX(0);
  opacity: 1;
  font-family: 'font-8';
  transition-delay: 0.3s;
}

.slide.active .slide-image {
  transform: translateX(30px);
  opacity: 1;
  border-radius:10px;
  display: flex;
  transition-delay: 0.5s;
  justify-content: flex-end;
}

.slide.active .slide-image img {
  border-radius: 10px;
  width: 88%;
}

.slide-text h2 {
  font-size: 40px;
}

.slide-text p {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  line-height: 1.5;
}

.arrows {
  /* background: #fff; */
  float: left;
  /* padding: 15px; */
  border-radius: 10px;
  margin-top: 60px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.arrows button {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 18px;
}

.arrows button:hover {
  background: #14473b;
  color: #fff;
}

@media (max-width: 768px) {
.flex__content {
	margin: 0 0 0 10px;
}
.flex__content{
	height: 100%;
	width: 75%;
}
.flex__content h1{
	margin:0;
	font-size:30px;
	height: 80px;
	float: left;
	width: 100%;
	/* line-height: 0; */
}
.text__background{
	margin:0 !important;
	padding:0;
	/* height: 100px; */
}
.text--normal {
	margin:0;
	font-size: 12px;
}
.text--sub {
	font-size:10px;
	float:left;
	margin: 10px 0 0 0;
	padding: 0;
	width: 100%;
}
}

/*ÃƒÂ¡Ã†â€™Ã‚Â¡ÃƒÂ¡Ã†â€™Ã…Â¡ÃƒÂ¡Ã†â€™Ã‚ÂÃƒÂ¡Ã†â€™Ã‹Å“ÃƒÂ¡Ã†â€™Ã¢â‚¬Å“ÃƒÂ¡Ã†â€™Ã¢â‚¬ÂÃƒÂ¡Ã†â€™Ã‚Â ÃƒÂ¡Ã†â€™Ã‹Å“*/
.slider {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  height: 510px;
}

.slider {
	width:92%;
	height: max-content;

	}
}
.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: grid;
  opacity: 1;
  /* height: 398px; */
  position: relative;
  align-items: start;
  width: 1380px;
  margin:auto;
  padding: 20px 0;
  justify-items: start;
  margin: 0;
}
@media (max-width: 768px) {
.slide.active {
  display: flex;
width:92%;
  opacity: 1;
  height: max-content;
  position: relative;
  flex-direction: column-reverse;
  align-items: center;
}
.slide-text {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.5s ease-out;
}

.slide-image {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.5s ease-out;
}

.slide.active .slide-text {
  transform: translateX(0);
  opacity: 1;
  width: 100%;
  font-family: 'font-8';
  text-align: center;
}

.slide.active .slide-image {
  transform: translateX(0);
  opacity: 1;
  border-radius: 10px;
  display: flex;
}

.slide.active .slide-image img {
  border-radius: 10px;
  width: 100%;
  animation: slideInRight 1.8s ease-out forwards;
}

.slide-text h2 {
  font-size: 40px;
  animation: slideInLeft 1.2s ease-out forwards;
  opacity: 0;
}

.slide-text p {
  font-size: 14px;
  color: #888;
  animation: slideInLeft 1.4s ease-out 0.2s forwards;
  opacity: 0;
}

.arrows {
  background: none;
  float: left;
  padding: 15px;
  width: 100%;
  border-radius: 10px;
  margin-top: 0;
  opacity: 1;
  box-shadow: none;
  animation: fadeIn 0.5s ease-out 1s forwards;
}

.arrows button {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.arrows button:hover {
  background: #14473b;
  color: #fff;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

	@media (max-width: 768px) {
	#product_slider_bottom{
		height: 100%;
	}
#product_sli_bottom{
	height:max-content;
}
.lamaria-background{
	width: 45%;
	left: 0;
	display: flex;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #0a4336;
}
.lamaria-color-panel{
	width: 56%;
	padding: 0;
	display: flex;
	justify-content: space-around;
}
		.lamaria-flip-front {
			width: 155px !important;
		}
		.lamaria-text{
			width: 90%;
		}
		.lamaria-flip-card{
			left: 30%;
			width: 100px;
		}
		.lamaria-text a{
			padding: 5px;
		}
		.lamaria-controls{
			bottom:15px;
			right:15px;
		}
		.lamaria-controls button{
		width:30px;
			height:30px;
		}
		.lamaria-dots{
			bottom:20px;
		}
		.slide-text h2 {font-size:20px;}
	}