/* Category Details Specific Styles */

.category-products {
    background: #fff;
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid #FE9404;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-img {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    min-height: 44px; /* Ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-know-more {
    display: inline-block;
    padding: 10px 25px;
    border: 1.5px solid #FE9404;
    color: #FE9404;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 2px;
}

.btn-know-more:hover {
    background: #FE9404;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 148, 4, 0.2);
}

.details-img img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* Details Caption Styling */
.details-caption {
    margin-bottom: 30px;
}

.details-caption h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wire-rope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wire-rope-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.wire-rope-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FE9404;
    font-weight: bold;
}

/* Download Button Styles */
.download-section {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #FE9404;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.download-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.download-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #FE9404;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #e68603;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 148, 4, 0.3);
}

.btn-download i {
    font-size: 18px;
}
