
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.maateen.me/solaiman-lipi/font.css');

:root{
    --primary-color: #00235f;
    --secondary-color: #ff9b00;
    --tertiary-color: #ffd209;
    --quaternary-color: #f8f9fa;
    --quinary-color: #f6f6f6;
    --bangla-font:'Solaiman Lipi', sans-serif;
}
body {
    font-family: "Jost", serif;
    font-family: 'Solaiman Lipi', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fa-shopping-cart{
    color: #ffffff;
    font-size: 20px;
}
.cart-dropdown{
    width: 248px;
    padding: 4px 10px;
}
.cart-dropdown li {
    padding: 10px 6px;
    border-bottom: 1px solid #f6f6f6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 7px;
}
.cart-dropdown li:last-child{
    border-bottom: none;
}
.cart-dropdown li p{
    margin: 0;
}
.cart-dropdown li .fa {
    color: #ff9b00;
    font-size: 18px;
    margin-top: 10px;
}
a {
    text-decoration: none;
}
.navbar-brand img{
    width: 50px;
}
.nav-link {
    color: white;
}
.nav-link:hover {
    color: #f8f9fa;
}
.navbar-toggler i {
    color: white !important;
}
.banner {
    text-align: center;
    background-color: #e6f9ff;
}
.carousel-item{
    height: 400px;
}
.carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-box {
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.product-box-inner {
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 100%;
}
.product-box-inner .product-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-box{
    margin-bottom: 20px;
}
.product-box img {
    width: 100%;
    transition: transform 0.3s ease;
}
.product-box:hover img {
    transform: scale(1.1);
}

.btn-section {
    background: #f6f6f6;
    padding: 10px 10px;
}
.btn-section h4{
    font-size: 18px;
}
.btn-section .product-btn{
    background: #f8f9fa;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
}
.btn-section .product-btn:hover {
    background: #3191f0;
    color: #f8f8f8;
}
.rating {
    color: #ffd209;
    font-size: 14px;
}
.rating i {
    color: #ff9b00;
}
.rating i.active {
    color: #f8f9fa;
}
.product-feature {
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #00235f;
    color: #fff;
    border-radius: 20px;
}
.order-form{
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #b5dbe7;
}
.payment-img {
    width: 70px;
    margin-bottom: 14px;
}
/*Product Details*/
.heading-title {
    text-align: center;
    margin-bottom: 20px;
    background-color: #4b9fd3;
    padding: 7px 0px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.heading-title h1{
    font-weight: 600;
    color: #fff;
}
.p-img img {
    width: 100%;
    height: 520px;
}
.short-dec p{
    font-size: 20px;
}
.feature {
    border: 2px solid #4b9fd3;
    padding: 5px 12px;
    border-radius: 5px;
}
.feater-item > i{
    font-size: 20px;
}
.feater-item > p {
    font-size: 19px;
    font-weight: 600;
    padding: 0px 12px;
    margin: 0;
}
.heading2{
    color: #0974b7;
    margin-bottom: 30px;
}
.ps-box img{
    height: 400px;
}
.gurrenty-section{
    background-color: #e4f5ff;
}
.order-btn{
    background: #4b9fd3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 20px;
}
.order-btn:hover{color: #fff;}
.gurrenty-text {
    background: #f8f9fa;
    padding: 26px 14px;
    border-radius: 10px;
    border: 2px solid #4b9fd3;
}
.gurrenty-text h1 {
    font-size: 42px;
    text-align: center;
    color: #0974b7;
}
.product-description {
    border: 2px solid #ddd;
    padding: 10px 16px;
    border-radius: 5px;
}
.product-description p{
    font-size: 20px;
}
.section-title {
    background: #4b9fd3;
    padding: 10px 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 16px;
}
.section-title > h1{
    margin: 0;
    text-align: center;
    color: #fff;
}

/* Regular Price - Cross Out Animation */
.regular-price del {
    position: relative;
    display: inline-block;
    color: red; /* Color for the crossed-out text */
}

.regular-price del::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: red; /* Color of the cross line */
    animation: crossOut 1s ease-in-out forwards; /* Animation */
}

@keyframes crossOut {
    to {
        width: 100%; /* Full width of the text */
    }
}

/* Discount Price - Right to Bottom Line Animation */
.discount-price span {
    position: relative;
    display: inline-block;
    color: green; /* Color for the discounted text */
}

.discount-price span::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Adjust position of the line */
    right: 0;
    width: 0;
    height: 2px;
    background: green; /* Color of the line */
    animation: drawLine 1s ease-in-out forwards; /* Animation */
}

@keyframes drawLine {
    to {
        width: 100%; /* Full width of the text */
    }
}
