.price-box {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.old-price {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
    color: #4da3ff;
}

.products {
    padding: 120px 20px;
}

.products-header {
    text-align: center;
    margin-bottom: 70px;
}

.products-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.products-header p {
    opacity: 0.8;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.search-container {
    display: flex;
    justify-content: flex-start;

    margin-bottom: 50px;
}

#productSearch {
    width: 320px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

#productSearch:focus {
    border-color: #4da3ff;
    box-shadow: 0 0 20px rgba(77,163,255,0.25);
}

#productSearch::placeholder {
    color: rgba(255,255,255,0.5);
}

.product-category {
    margin-bottom: 90px;
}

.category-title {
    font-size: 38px;
    margin-bottom: 35px;
    text-align: center;

    color: #4da3ff;

    letter-spacing: 1px;

    text-shadow: 0 0 15px rgba(77,163,255,0.35);
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.product-card {

    width: 320px;

    padding: 30px;

    border-radius: 16px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(10px);

    transition: 0.3s ease;

    cursor: pointer;

    display: flex;
    flex-direction: column;

    height: 100%;
}

.specs {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card.active .specs {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.product-card ul {
    padding-left: 18px;
    margin: 0;
}

.product-card li {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 5px;
}

.product-card:hover {

    transform: translateY(-8px);

    border-color: #4da3ff;

    box-shadow: 0 0 25px rgba(77,163,255,0.2);
}

.product-card h2 {
    margin-bottom: 15px;
}

.product-status {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 15px;
    background: rgba(106,203,82,0.15);
    border: 1px solid rgba(106,203,82,0.4);
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    color: #6ACB52;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    align-self: flex-start;
}

.role-restriction {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 15px;
    background: rgba(186,99,201,0.15);
    border: 1px solid rgba(186,99,201,0.4);
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    color: #BA63C9;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    align-self: flex-start;
}

.product-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.spec-hint {
    font-size: 15px;
    font-weight: bold;
    color: #4da3ff;
    transition: 0.3s ease;
    margin-top: 15px;
}

.product-card.active .spec-hint {
    opacity: 0;
    height: 0;
    margin-top: 0;
    overflow: hidden;
}

.product-card span {

    font-size: 22px;

    font-weight: bold;

    color: #4da3ff;
}