/* RS Product Item Layout - Dark Glassmorphism */
.rs-product-item {
    background: rgba(22, 59, 101, 0.4);
    border: 1px solid rgba(185, 135, 46, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rs-product-item:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 135, 46, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rs-product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 30, 54, 0.6);
}

.rs-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rs-product-item:hover .rs-product-thumb img {
    transform: scale(1.1);
}

.rs-product-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    opacity: 0;
}

.rs-product-item:hover .rs-product-btn {
    bottom: 20px;
    opacity: 1;
}

.rs-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #EAD196 0%, #B9872E 50%, #8A6B32 100%);
    color: #0B1E36;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rs-btn:hover {
    background: #00E5FF;
    color: #0B1E36;
}

.rs-product-content {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(185, 135, 46, 0.2);
}

.rs-product-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.rs-product-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rs-product-title a:hover {
    color: #B9872E;
}

.rs-product-price {
    color: #a0aec0;
    font-size: 0.9rem;
}
