.gnf-custom-product-section {
    padding: 40px 0;
    font-family: 'Noto Sans', sans-serif;
}

.gnf-products-title {
    color: #F5F5F5;
    font-family: 'Noto Serif', serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gnf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gnf-product-card {
    background-color: #2C2C2E;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gnf-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.gnf-product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #1A1A1D;
}

.gnf-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.gnf-product-title {
    margin: 0 0 10px 0;
    font-family: 'Noto Serif', serif;
    font-size: 20px;
}

.gnf-product-title a {
    color: #F5F5F5;
    text-decoration: none;
    transition: color 0.3s;
}

.gnf-product-title a:hover {
    color: #DAA520;
}

.gnf-product-price {
    color: #F5F5F5;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.gnf-product-price ins {
    text-decoration: none;
    color: #DAA520;
}

.gnf-add-to-cart-btn {
    display: inline-block;
    background-color: transparent;
    color: #DAA520;
    border: 2px solid #DAA520;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gnf-add-to-cart-btn:hover {
    background-color: #DAA520;
    color: #1A1A1D;
}

.gnf-no-products-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    background-color: #1A1A1D;
    padding: 50px;
    border-radius: 8px;
    border: 1px dashed #4E4E50;
    color: #F5F5F5;
}

.gnf-add-product-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #DAA520;
    color: #1A1A1D;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}