@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
    vertical-align: baseline;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
}
:focus {
    outline: none;
}
::-moz-focus-inner {
    border: 0;
}
#main-container {
    width: 300px;
    height: 600px;
    box-sizing: border-box;
    border: 1px solid #000;
    top: 0;
    position: absolute;
    left: 0;
    padding-right: 1px;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
}
.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.slider {
    height: 330px;
    position: absolute;
    top: 195px;
    margin: auto;
    display: flex;
    align-items: end;
    gap: 7px;
    transition: transform 0.5s ease-in-out; /* Transition applied for smoother sliding */
    will-change: transform, opacity;
}
.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    will-change: transform, opacity;
}
.active {
    width: 198px;
    height: 330px;
}
.inactive {
    width: 68px;
    height: 150px;
}
#btn-left-click {
    position: absolute;
    left: 0px;
    bottom: 73px;
}
#btn-right-click {
    position: absolute;
    right: 3px;
    bottom: 73px;
}
.pad2 {
    padding: 63px 18px 63px 25px !important;
    cursor: pointer;
}
.pad {
    padding: 63px 18px 63px 22px;
    cursor: pointer;
}
.pad:hover button,
.pad2:hover button {
    background: rgba(255, 255, 255, 1);
}
button {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 18px;
    width: 25px;
    height: 25px;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: absolute;
    bottom: 58px;
    left: 20px;
}
.lines {
    width: 40px;
    height: 3px;
    margin: 2px;
    background: gray;
    border-radius: 5px;
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}
.lines.enable {
    background: #000;
    width: 70px;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-container {
    position: absolute;
    top: 90px;
    left: 23px;
    width: 235px;
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    transition: all 0.5s;
}
.text1 {
    font-size: 18px;
    font-weight: 400;
}
.text2 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 7px;
    line-height: 22px;
    max-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.text3 {
    font-size: 17px;
    font-weight: 600;
    padding-top: 9px;
    color: #f00020;
}
.text3 span {
    color: gray;
    font-size: 12px;
}
.text4 {
    color: gray;
    font-size: 12px;
    padding-top: 8px;
}
.price-orig {
    text-decoration: line-through;
}
.price-discount {
    color: #f00020;
    font-size: 12px;
}
.slides-content {
    opacity: 0;
    transition: opacity 0.2s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    transform: translateX(10px);
}
.slides-content.visible {
    opacity: 1;
    transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(0px);
}
.logo {
    position: absolute;
    width: 115px;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
}
.logo img {
    max-width: 115px;
}
.cta-button {
    display: flex;
    width: 125px;
    height: 20px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    cursor: pointer;
}
.cta-button a {
    display: flex;
    width: 125px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    color: #000;
    text-decoration: none;
}
.cta-button img {
    max-width: 13px;
}
.cta-button img {
    transition: transform 0.3s ease-in-out;
}
.banner-click {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
