.base-product {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}
.base-product:hover {
    transform: translateY(-10px);
}
.base-product img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.page-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff5722;
}
.base-product h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}
.base-product p {
    color: #666;
}
.base-details {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.feature-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

/* Styles for banner slider - these might be needed based on the HTML structure */
.banner-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.product-highlight {
    background-color: rgba(255, 87, 34, 0.8);
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
}