/* Section Styling */
.product-section {
    padding: 90px 0 60px 0; /* Reduced bottom padding */
    background-color: #000;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-section {
    height: auto;
}

/* Section Heading */
.section-heading {
    /*font-family: 'Space Age', sans-serif;*/
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;  /* Change text color to white */
    margin-top: 50px;
}

/* Product List Styling (Center the cards) */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    margin-bottom: 40px
}

.product-list + .section-heading {
    margin-top: -40px; /* Move the "Other Products" section up */
}

/* Product Card Styling */
.product-card {
    background-color: #1e1e1e;
    padding: 20px;
    width: 260px;  /* Reduced card size */
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Product Title */
.product-title {
    font-size: 20px;
    margin: 15px 0 10px;
    color: white;
    text-transform: uppercase;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-industrial-yellow {
    display: inline-block;
    position: relative;
    padding: 12px 20px;
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #FFD700; /* Industrial Yellow */
    color: #FFD700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Change button color to black during hover */
.btn-industrial-yellow:hover {
    color: black;
    border-color: black;
}

/* Hover effect */
.btn-industrial-yellow .btn-hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFD700; /* Industrial Yellow */
    transition: all 0.3s ease;
}

.btn-industrial-yellow:hover .btn-hover {
    top: 0;
}

.btn-industrial-yellow span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-card {
        width: 220px; /* Smaller size for medium screens */
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 100%; /* One item per row for small screens */
    }
}
