/* Luxury Gold Products Page */

.kec-products-wrapper {
    max-width: 1200px;
    margin: 110px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.kec-products-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--kec-gold);
    margin-bottom: 8px;
}

.kec-products-subtitle {
    font-size: 15px;
    color: var(--kec-text-muted);
    margin-bottom: 35px;
}

/* GRID */
.kec-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

/* PRODUCT CARD */
.kec-product-card {
    background: linear-gradient(150deg, #0c0c0f, #1a1a1d);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    transition: .3s ease;
}

.kec-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(212,175,55,0.25);
}

.kec-product-image {
    width: 100%;
    height: 170px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.kec-product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--kec-gold);
    margin-bottom: 4px;
}

.kec-product-type {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 10px;
}

.kec-product-price {
    font-size: 17px;
    color: var(--kec-gold);
    font-weight: 700;
    margin-bottom: 16px;
}

/* ACTION BUTTONS */
.kec-product-actions {
    display: flex;
    gap: 10px;
}

.kec-btn {
    flex: 1;
    padding: 9px 12px;
    border-radius: 25px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: .25s ease;
    text-decoration: none;
}

.kec-btn:hover {
    transform: translateY(-2px);
}

/* Details Button */
.kec-btn-details {
    background: #2a2a2e;
    color: #fff;
}

/* Buy Now Button */
.kec-btn-buy {
    background: var(--kec-gold);
    color: #000;
}
