 /* ===== Hero Section ===== */
        .workboots-hero-section {
            /* Gradient overlay + background image */
            background: 
                linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), /* semi-transparent overlay */
                url('https://i.pinimg.com/1200x/4f/6f/a8/4f6fa8200f304f48269e129a8d9f7209.jpg') center/cover no-repeat; /* Replace with your image */
            
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
            text-align: center;
        }

        

        .workboots-hero-section h1 {
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }

        .workboots-hero-section .lead {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .workboots-cta-btn {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 12px 40px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .workboots-cta-btn:hover {
            background-color: var(--hover-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
/* ===== Product Card Section ===== */
.workboots-products-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

/* ===== Product Card ===== */
.wbs-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* full height for equal cards */
}

/* Image container */
.wbs-img-container {
    width: 100%;
    max-height: 250px; /* consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f9f9f9; /* placeholder bg if image smaller */
}

/* Images */
.wbs-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* maintain aspect ratio, no cropping */
    transition: transform 0.3s ease;
}

/* Card hover effect */
.wbs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.wbs-card:hover .wbs-img-container img {
    transform: scale(1.05); /* subtle zoom */
}

/* Info section at bottom */
.wbs-card-info {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    background-color: #fff;
    flex-shrink: 0;
}

/* Info elements */
.wbs-card-info h5 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.wbs-card-info .wbs-price-text {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700; /* golden color */
}

.wbs-card-info .wbs-card-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wbs-card-info .wbs-card-btn:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .wbs-card-info h5 {
        font-size: 1.1rem;
    }
    .wbs-card-info .wbs-price-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .wbs-card-info h5 {
        font-size: 1rem;
    }
    .wbs-card-info .wbs-price-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .wbs-card-info {
        padding: 10px 15px;
    }
    .wbs-card-info h5 {
        font-size: 0.95rem;
    }
    .wbs-card-info .wbs-price-text {
        font-size: 0.85rem;
    }
    .wbs-card-info .wbs-card-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}


/* ===== Why Choose Us Section ===== */
.workboots-why-choose-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.workboots-feature-box {
    background-color: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.workboots-feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(128, 186, 38, 0.15);
    transform: translateY(-4px);
}

.workboots-feature-icon {
    font-size: 3rem;
    transition: var(--transition);
}

.workboots-feature-box:hover .workboots-feature-icon {
    transform: scale(1.1);
}

.workboots-feature-box h4 {
    color: var(--hover-color);
}

/* ===== Testimonials Section ===== */
.workboots-testimonials-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.workboots-testimonial-card {
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.workboots-testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px);
}

.workboots-rating {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.workboots-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===== Call to Action Section ===== */
.workboots-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6ba01f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.workboots-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.workboots-cta-section h2 {
    font-weight: 800;
}