/* Training Hero Section */
.training-hero {
    background: url('img/banner/common-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.training-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Training Filter Section */
.training-filter-section {
    background-color: #f8f9fa;
}

.filter-card {
    transition: all 0.3s ease;
}

.filter-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-group {
    margin-bottom: 15px;
}

/* Training Collections */
.training-collections {
    margin-top: 50px;
}

.training-type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    padding: 20px;
    height: 100%;
}

.training-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.training-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.training-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.training-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.training-type-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Featured Equipment */
.featured-equipment {
    margin-top: 50px;
}

.single-product {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-product:hover {
    transform: translateY(-5px);
}

.price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff5e14;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.single-product:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    color: #fff;
    background: #ff5e14;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #333;
    color: #fff;
}

.product-details {
    padding: 20px;
    background: #fff;
}

.product-details h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.price h6 {
    color: #ff5e14;
    font-weight: bold;
    font-size: 1.2rem;
}

.price .l-through {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 10px;
}

.product-rating {
    margin: 10px 0;
}

.product-rating .checked {
    color: #ffc107;
}

.prd-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.social-info {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-info:hover {
    color: #ff5e14;
}

/* Training Care Section */
.training-care-section {
    background-color: #f8f9fa;
}

.training-care-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-care-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.care-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.training-care-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.training-care-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.training-care-list i {
    color: #ff5e14;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.training-care-list span {
    color: #555;
    font-size: 1rem;
}

.care-guide-btn {
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 30px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .training-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .training-hero {
        height: 60vh;
    }
}

@media (max-width: 767px) {
    .training-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .training-hero-content p {
        font-size: 1rem;
    }
    
    .training-type-card {
        padding: 15px;
    }
    
    .training-care-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .training-hero {
        height: 50vh;
    }
    
    .training-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .prd-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Testimonial Items */
.testimonial-carousel {
    position: relative;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 24px;
    color: #e74c3c;
    opacity: 0.5;
    position: absolute;
}

.testimonial-content p::before {
    top: -10px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 4px solid #f1f1f1;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #777;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.owl-prev, 
.owl-next {
    width: 40px;
    height: 40px;
    background: #e74c3c !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.owl-prev:hover, 
.owl-next:hover {
    background: #c0392b !important;
}

/* Dots Navigation */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #5503f9 !important;
    transform: scale(1.2);
}