/* Tombol Header Keranjang & Login */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cart, .btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #3EAEE4;
}

.btn-cart {
    background: #3EAEE4;
    color: white;
}

.btn-cart:hover {
    background: #2E9DD4;
    border-color: #2E9DD4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(62, 174, 228, 0.3);
}

.btn-login {
    background: #3EAEE4;
    color: white;
}

.btn-login:hover {
    background: #2E9DD4;
    border-color: #2E9DD4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(62, 174, 228, 0.3);
}

.btn-icon {
    font-size: 18px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .header-buttons {
        gap: 6px;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .btn-cart, .btn-login {
        padding: 8px 14px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    .btn-text {
        font-size: 11px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
}

/* Product Image Styling */
.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.p-card-img {
    position: relative;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8dcc0 100%);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.p-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.p-card-info {
    padding: 20px;
    text-align: center;
}

.p-card-info .name {
    font-size: 16px;
    font-weight: 600;
    color: #1B2845;
    margin-bottom: 12px;
}

.detail-link {
    display: inline-block;
    color: #C9A227;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.detail-link:hover {
    color: #b8891f;
    text-decoration: underline;
}
