.brand {
    max-width: 250px;
}

a {
    text-decoration: none!important;
}

.service-item-hover {
    opacity: 0;
}

.service-item-hover:hover {
    opacity: 1;
}

.phone-btn-mobile {
    background-color: black;
    padding: 10px;
    width: 40px;
    height: 40px;
}

.phone-btn-mobile img {
    margin-bottom: .7em;
    margin-left: .1em;
}

@media screen and (min-width: 991px) {
    .phone-btn-mobile {
        display: none;
    }
}

.filter_selects {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1c1c1c, #2e2e2e);
    border: 2px solid #3c3c3c;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    width: fit-content;
    margin: 10vh auto;
    color: #e6e6e6;
    font-family: "Montserrat", sans-serif;
}

.filter_selects .pair {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
}

.filter_selects label {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #ffcc33; /* industrial accent */
    text-transform: uppercase;
}

.filter_selects select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #555;
    border-radius: 0.5rem;
    background: #262626;
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.filter_selects select:hover {
    border-color: #ffcc33;
    background: #303030;
}

.filter_selects select:focus {
    outline: none;
    border-color: #ffaa00;
    box-shadow: 0 0 10px rgba(255,170,0,0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .filter_selects {
        width: 85%;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .filter_selects .pair {
        width: 100%;
    }
}

.sold-sign {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #b00;
    color: white;
    font-weight: bold;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.sold-label {
    color: #ff3333;
    font-weight: 700;
}

.w-dyn-item {
    position: relative;
    transition: transform 0.3s ease;
}
.w-dyn-item:hover {
    transform: translateY(-5px);
}

.project-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #1c1c1c;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.35s ease;
}

.project-image-wrap {
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.project-item:hover .project-image {
    transform: scale(1.06);
}

/* --- Hover overlay --- */
.project-hover-content-wrap {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-item:hover .project-hover-content-wrap {
    opacity: 1;
}

/* --- Arrow button animation --- */
.project-button-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-item:hover .project-button-wrap {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-button-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 6px rgba(255, 204, 51, 0.5));
}

/* --- Overlay gradient --- */
.project-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

/* --- Info layout --- */
.project-info-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-top: 1px solid #333;
    color: #ddd;
    font-size: 0.9rem;
}

.project-title {
    color: #ffcc33;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem 0;
}

.project-stock,
.project-price {
    padding: 0 1.25rem 1rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.project-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px; /* optional, for smoother visuals */
}

.project-info-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px 40px;
    background: linear-gradient(145deg, #1c1c1c, #222); /* modern subtle gradient */
    padding: 35px 45px;
    border-radius: 16px;
    border: 2px solid #333;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    color: #f5f5f5;
    font-family: "Inter", "Montserrat", sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-info-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-info-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffc107; /* machinery yellow accent */
    margin: 0;
}

.project-info > div {
    font-size: 18px;
    font-weight: 600;
    padding: 12px 16px;
    background: var(--color--black);
    border: 1px solid #444;
    border-radius: 10px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.35);
    color: #f5f5f5;
    transition: background 0.3s ease, transform 0.2s ease;
}

.project-info > div:hover {
    background: #333;
    transform: translateY(-2px);
}

.sold-label {
    display: inline-block;
    background: #d32f2f;        /* deep industrial red */
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .project-info-wrap {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 15px;
    }

    .project-info > div {
        font-size: 16px;
    }
}
