.product-hero-section {
    background:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('../images/s1.webp') center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.product-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-hero-section p {
    font-size: 20px;
    opacity: 0.9;
}
    /* ===== Breadcrumb ===== */
.product-breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
}
.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.product-breadcrumb a:hover {
    color: #E61E15;
}
.product-breadcrumb .product-breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* ===== Section Title ===== */
.product-section-title {
    text-align: center;
    padding: 50px 0 40px;
}
.product-section-subtitle {
    color: #E61E15;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.product-section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.product-section-desc {
    color: #888;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Product Cards ===== */
.product-card {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 50%, #e8ecf1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img-wrap img {
    width:100%;
    transition: transform 0.5s;
}
.product-card:hover .product-card-img-wrap img {
    transform: scale(1.05);
}
.product-card-body {
    background: #f8f9fa;
    padding: 20px 30px;
}
.product-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.product-card-title a{
    color: #1a1a2e;
    text-decoration: none;
}
.product-card-text {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}
.product-card-footer {
    background: #1e2a3a;
    padding: 24px 40px;
    height: 100%;
}
.product-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.product-card-list li {
    color: #ccc;
    font-size: 13px;
}
.product-card-list li::before {
    content: "\25CF";
    color: #E61E15;
    margin-right: 6px;
    font-size: 10px;
}
.product-card-list li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.product-card-list li a:hover {
    color: #E61E15;
}
.product-btn-more {
    background: #E61E15;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}
.product-btn-more:hover {
    background: #d99400;
    color: #fff;
    transform: translateX(4px);
}

/* ===== Contact Banner ===== */
.product-contact-banner {
    background: #E61E15;
    padding: 40px 0;
    margin-top: 20px;
}
.product-contact-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
}
.product-contact-form-inline {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.product-contact-form-inline input,
.product-contact-form-inline textarea {
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    min-width: 160px;
    outline: none;
}
.product-contact-form-inline input::placeholder,
.product-contact-form-inline textarea::placeholder {
    color: #999;
}
.product-contact-form-inline .product-btn-send {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.product-contact-form-inline .product-btn-send:hover {
    background: #2d2d4e;
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
    .product-card-body,
    .product-card-footer {
        padding: 24px 20px;
    }
    .product-card-list {
        grid-template-columns: 1fr;
    }
    .product-section-heading {
        font-size: 28px;
    }
    .product-hero-section{height:300px;}
    .product-contact-form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .product-contact-form-inline input {
        min-width: auto;
    }
    .product-hero-section h1{font-size:24px;}
}
