@charset "utf-8";
/* CSS Document */
.category-box{
    background-color: #fff;
    border-radius: 0.25rem;
    border: 1px solid #dfdfdf;
    color:#333;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    padding: 1rem;
    text-align: center;
}
.category-box-image{
    max-height: 200px;
    max-width: 200px;
    margin:0 auto 1rem;
}
.category-box-image > img{
    max-width: 100%;
}

span.like-icon {
	color: #333;
	font-size: 1.333rem;
	position: absolute;
	z-index: 101;
	left: 0;
	top: 0;
	cursor: pointer;
	background-color: #eee;
	display: block;
	line-height: 1;
	height: 32px;
	width: 32px;
	padding: 6px 0;
	border-radius: 30px;
	text-align: center;
	transition: all .4s;
}

.category-box h5 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Banner */
.banner-wrapper {
    background-image: linear-gradient(rgba(129, 129, 129, 0.7), rgba(0, 0, 0, 0.7)), url('https://iprorwxhnnonlo5p-static.micyjz.com/cloud/lnBprKoploSRpkjmrpqkjp/Barcode-Scanner-for-Warehouse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 60px 30px;
    overflow: hidden;
    position: relative;
}

.banner-content {
    padding: 20px;
}

.banner-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f59323;
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.banner-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
}

.btn-prime {
    background-color: #c06701;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-prime:hover {
    background-color: #da7501;
}

.banner-image img {
   
    border-radius: 8px;
}

/* Banner with background image and overlay */
.banner-wrapper {
    position: relative;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    z-index: 1;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/barcode-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 50%, rgba(0,20,40,0.85) 100%);
    z-index: -1;
}


/* Enquiry Form Styles */
.enquiry-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #da7501;
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.enquiry-form .form-control:focus {
    outline: none;
    border-color: #da7501;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
    background: #ffffff;
}

.enquiry-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #da7501, #fca13a);
    color: #000000;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #da7501, #da7501);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(41, 182, 246, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-wrapper {
        padding: 30px 20px;
    }
    
    .banner-title {
        font-size: 30px;
    }
    
    .banner-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .enquiry-form-wrapper {
        margin-top: 20px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 22px;
    }
}

/* Placeholder styling */
.enquiry-form .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.card-deal {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-deal .card-body {
    display: flex;
    flex-direction: column;
}

.card-deal .qty-cart {
    margin-top: auto; /* Push add-to-cart to bottom */
}
